Created
January 21, 2016 02:04
-
-
Save toolness/a897aff5c84b00ae9d3d to your computer and use it in GitHub Desktop.
Inform 7 Dockerfile
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| FROM alpine:3.3 | |
| ENV INFORM_RELEASE 6M62 | |
| RUN set -ex \ | |
| && apk add --no-cache --virtual .fetch-deps curl \ | |
| && apk add --no-cache --virtual .run-deps perl util-linux \ | |
| && curl http://inform7.com/download/content/${INFORM_RELEASE}/I7_${INFORM_RELEASE}_Linux_all.tar.gz \ | |
| > /inform.tar.gz \ | |
| && apk del .fetch-deps \ | |
| && tar -zxvf /inform.tar.gz \ | |
| && cd /inform7-${INFORM_RELEASE}/ \ | |
| && ./install-inform7.sh \ | |
| && rm -rf /inform.tar.gz /inform7-${INFORM_RELEASE} | |
| CMD ["sh", "i7"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment