From 8336d886e98bbe72ca5a2e5bb806bd24e8a6b78e Mon Sep 17 00:00:00 2001 From: GlassedSilver Date: Wed, 4 May 2022 12:16:58 +0200 Subject: [PATCH] fix-scripts need to be owned and run by root --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 2977041..5cb2ac6 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=$UID:$GID [ "/fix-scripts/", "/app/" ] +COPY --chown=root:root [ "/fix-scripts/", "/app/" ] EXPOSE 17442 ENTRYPOINT [ "/app/entrypoint.sh" ]