Skip to content

Instantly share code, notes, and snippets.

@mfeineis
Last active September 7, 2018 13:47
Show Gist options
  • Save mfeineis/9e02caff157fdce04800ac254fafad59 to your computer and use it in GitHub Desktop.
Save mfeineis/9e02caff157fdce04800ac254fafad59 to your computer and use it in GitHub Desktop.
Minimal Elm Docker image based on alpine
FROM alpine
RUN apk add binutils && wget -qO - "https://github.com/elm/compiler/releases/download/0.19.0/binaries-for-linux.tar.gz" | tar -zxC /usr/local/bin/ && strip /usr/local/bin/elm && apk del binutils
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment