Created
January 7, 2016 18:01
-
-
Save thejohnnybot/fdd5fb7fe7331c629962 to your computer and use it in GitHub Desktop.
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 msaraiva/elixir-dev | |
| RUN apk --update add make gcc bash vim git-bash-completion && \ | |
| rm -rf /var/cache/apk/* | |
| COPY . /usr/src/app | |
| WORKDIR /usr/src/app | |
| RUN mix do deps.get, compile | |
| EXPOSE 4000 | |
| CMD ["mix", "phoenix.server"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment