Last active
September 7, 2018 13:47
-
-
Save mfeineis/9e02caff157fdce04800ac254fafad59 to your computer and use it in GitHub Desktop.
Minimal Elm Docker image based on alpine
This file contains 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 | |
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