From ef358bef6efa8b1762a4481c8f82bc5ba302f9a6 Mon Sep 17 00:00:00 2001 From: Thomas Citharel Date: Wed, 16 Jun 2021 17:08:49 +0200 Subject: [PATCH] Fix docker build by doing the asset building in a subfolder Signed-off-by: Thomas Citharel --- docker/production/Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docker/production/Dockerfile b/docker/production/Dockerfile index 3aaa41b18..6f0f36d9d 100644 --- a/docker/production/Dockerfile +++ b/docker/production/Dockerfile @@ -2,8 +2,9 @@ FROM node:16-alpine as assets RUN apk add --no-cache python3 build-base libwebp-tools bash imagemagick ncurses - +WORKDIR /build COPY js . +RUN ls -a RUN yarn install \ && yarn run build @@ -24,7 +25,7 @@ COPY config/config.exs config/prod.exs ./config/ COPY config/docker.exs ./config/runtime.exs COPY rel ./rel COPY support ./support -COPY --from=assets ./priv/static ./priv/static +COPY --from=assets ./build/priv/static ./priv/static RUN mix phx.digest \ && mix release