Created
October 11, 2014 13:55
-
-
Save BennyHallett/81ac88a788607ad876e4 to your computer and use it in GitHub Desktop.
Simple Dockerfile for use with a Phoenix app
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 trenpixster/elixir:1.0.1 | |
COPY . /phoenix_app | |
ENV MIX_ENV prod | |
WORKDIR /phoenix_app | |
RUN mix do deps.get, compile | |
EXPOSE 4000 | |
CMD ["mix", "phoenix.start"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment