From 5b919b2b189e435fe6e5896e5f78fbf72bb8d053 Mon Sep 17 00:00:00 2001 From: GlassedSilver Date: Wed, 4 May 2022 16:55:22 +0200 Subject: [PATCH] Fix scripts folder: copy content AND parent folder --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 5cb2ac6..c8fd040 100644 --- a/Dockerfile +++ b/Dockerfile @@ -66,7 +66,7 @@ RUN npm config set strict-ssl false && \ COPY --chown=$UID:$GID --from=frontend [ "/build/backend/public/", "/app/public/" ] COPY --chown=$UID:$GID [ "/backend/", "/app/" ] -COPY --chown=root:root [ "/fix-scripts/", "/app/" ] +COPY --chown=root:root [ "/fix-scripts", "/app/" ] EXPOSE 17442 ENTRYPOINT [ "/app/entrypoint.sh" ]