Packages
A few sentences (a paragraph) describing the project.
Current section
Files
Jump to
Current section
Files
priv/templates/dockerfile.eex
FROM elixirbase:latest
ENV MIX_ENV=dev
COPY . /<%= @app %>
WORKDIR /<%= @app %>
RUN mix deps.get
RUN mix compile
CMD mix app.start