Fix overlay & enoent error on image uploads

This commit is contained in:
prichier
2020-10-31 02:39:32 +01:00
parent 005470ba5b
commit 320c17a29d
3 changed files with 17 additions and 11 deletions

View File

@@ -21,6 +21,7 @@ RUN mix local.hex --force \
COPY lib ./lib
COPY priv ./priv
COPY config ./config
COPY rel ./rel
COPY docker/production/releases.exs ./config/
COPY --from=assets ./priv/static ./priv/static
@@ -30,7 +31,7 @@ RUN mix phx.digest \
# Finally setup the app
FROM alpine
RUN apk add --no-cache openssl ncurses-libs
RUN apk add --no-cache openssl ncurses-libs file
USER nobody
EXPOSE 4000