FROM elixirbase:latest

ENV MIX_ENV=dev

COPY <%= @app %> /<%= @app %>
WORKDIR /<%= @app %>

RUN mix deps.get
RUN mix compile
