Skip to content

Instantly share code, notes, and snippets.

@toolness
Created January 21, 2016 02:04
Show Gist options
  • Select an option

  • Save toolness/a897aff5c84b00ae9d3d to your computer and use it in GitHub Desktop.

Select an option

Save toolness/a897aff5c84b00ae9d3d to your computer and use it in GitHub Desktop.
Inform 7 Dockerfile
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