From f25f4109d277b4e9176a1e343deff1c18fb2d375 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Wolfgang=20Hu=C3=9F?= Date: Mon, 21 Dec 2020 09:36:06 +0100 Subject: [PATCH] Fix webapp Dockerfile - As I build the webapp Docker image locally pushed it to Docker Hub and used it on DO Kubernetes wir.social a file in the constants folder where missing. So I find out that the whole folder was not copied. --- webapp/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/webapp/Dockerfile b/webapp/Dockerfile index 5024ac2c6..b752299e6 100644 --- a/webapp/Dockerfile +++ b/webapp/Dockerfile @@ -26,6 +26,7 @@ RUN NODE_ENV=production yarn run build FROM base as production RUN yarn install --production=true --frozen-lockfile --non-interactive --no-cache COPY --from=build-and-test ./develop-webapp/.nuxt ./.nuxt +COPY --from=build-and-test ./develop-webapp/constants ./constants COPY --from=build-and-test ./develop-webapp/static ./static COPY nuxt.config.js . COPY locales locales