From 336d7a09bddac5c13b57bdc4d3afed69ffb3d029 Mon Sep 17 00:00:00 2001 From: GlassedSilver Date: Wed, 4 May 2022 18:31:28 +0200 Subject: [PATCH] set fix-scripts folder permissions more reliably --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index bbb424e..6922d0b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -65,7 +65,8 @@ 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 --chmod=755 [ "/fix-scripts", "/app/" ] +COPY --chown=$UID:$GID [ "/fix-scripts", "/app/" ] +RUN chmod -R +x /app/fix-scripts EXPOSE 17442 ENTRYPOINT [ "/app/entrypoint.sh" ]