From 838418def33a221931b48d82e61a925c75760123 Mon Sep 17 00:00:00 2001 From: PhPrinz <48761034+PhPrinz@users.noreply.github.com> Date: Fri, 17 Mar 2023 11:43:06 +0100 Subject: [PATCH] make entrypoint executable in local Dockerfile (#159) Co-authored-by: Philip Prinz --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 124e58b1..176c82dc 100644 --- a/Dockerfile +++ b/Dockerfile @@ -20,5 +20,6 @@ COPY --from=sdk /app/dist/* /usr/share/nginx/html # copy staged files COPY .docker/stage-release/ / +RUN chmod +x usr/local/bin/entrypoint.sh ENTRYPOINT ["entrypoint.sh"]