Skip to content

Instantly share code, notes, and snippets.

@joeljuca
Created December 5, 2018 22:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save joeljuca/8ae8bf852b0734a489ec862bb6725313 to your computer and use it in GitHub Desktop.
Save joeljuca/8ae8bf852b0734a489ec862bb6725313 to your computer and use it in GitHub Desktop.
FROM elixir:1.7.4-alpine
LABEL maintainer="Joel Wallis Jucá <joelwallis@gmail.com>"
ENV MIX_ENV prod
WORKDIR /app
COPY . $WORKDIR
RUN mix local.hex --force
RUN mix local.rebar --force
RUN mix deps.get
RUN mix compile
EXPOSE 8080
CMD mix run --no-halt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment