Last active
August 29, 2015 14:23
-
-
Save jvoigtlaender/ac988f88ee4ccf4998d8 to your computer and use it in GitHub Desktop.
Elm-Kurs 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 jvoigtlaender/elm:0.15.1 | |
RUN mkdir /cached && \ | |
cd /cached && \ | |
elm-package install --yes Apanatshka/elm-signal-extra && \ | |
elm-package install --yes elm-lang/core && \ | |
elm-package install --yes evancz/elm-html && \ | |
elm-package install --yes jwmerrill/elm-animation-frame && \ | |
elm-package install --yes jystic/elm-font-awesome && \ | |
elm-make | |
EXPOSE 3000 | |
ENV CODENVY_APP_PORT_80_HTTP 3000 | |
RUN mkdir /application | |
ENV CODENVY_APP_BIND_DIR /application | |
WORKDIR /application |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment