From 0c183ec0760660b98d828b481a56c22a871712a9 Mon Sep 17 00:00:00 2001 From: Crovaxon Date: Fri, 21 Jun 2024 02:02:47 +0200 Subject: [PATCH] Making sure the entrypoint script is executable --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 92055cc..4f2dbe8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -15,6 +15,7 @@ RUN apk add --no-cache ca-certificates libstdc++ su-exec bash-completion tar nod # copy entrypoint script to work directory COPY entrypoint.sh ./ +RUN chmod +x entrypoint.sh # mount volume directory of the Foundry application VOLUME /foundry