separate dockerfile copy commands for debugging

This commit is contained in:
Tao Bror Bojlén 2019-08-02 17:33:31 +03:00
parent f93345ecef
commit 8229f83938
No known key found for this signature in database
GPG Key ID: C6EC7AAB905F9E6F
1 changed files with 2 additions and 1 deletions

View File

@ -15,7 +15,8 @@ RUN mix local.hex --force && \
ENV MIX_ENV=prod
# install mix dependencies
COPY mix.exs mix.lock ./
COPY mix.exs ./
COPY mix.lock ./
COPY config config
RUN mix deps.get
RUN mix deps.compile