From e02388b67c4a9c5a9ab59972b1384124ea485169 Mon Sep 17 00:00:00 2001 From: JN Brisset Date: Thu, 10 Oct 2024 13:04:42 -0400 Subject: [PATCH] Update Dockerfile for entrypoint.sh execution exec of entrypoint.sh was giving an operation not permitted. The file did not have execution permission. Adding the line to add the execution permission and test ok. --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index e6c38f273..0e5c0d275 100644 --- a/Dockerfile +++ b/Dockerfile @@ -61,6 +61,7 @@ RUN apt-get update && apt-get install -y --no-install-suggests \ COPY --chown=node:node --from=builder /ghostfolio/dist/apps /ghostfolio/apps COPY --chown=node:node ./docker/entrypoint.sh /ghostfolio/entrypoint.sh +RUN chmod 0700 /ghostfolio/entrypoint.sh WORKDIR /ghostfolio/apps/api EXPOSE ${PORT:-3333} USER node