From d2f777a7f75ee22e5722db89548448064f42273f Mon Sep 17 00:00:00 2001 From: Israel Roldan Date: Sun, 13 Sep 2020 00:26:55 -0500 Subject: [PATCH] Added the execution permissions to the entrypoint script. Signed-off-by: Israel Roldan --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index d43118a..2825162 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,4 +8,6 @@ WORKDIR /public_html COPY init.sh /app/init.sh COPY LICENSE README.md /app/ +RUN ["/bin/chmod", "+x", "/app/init.sh"] + ENTRYPOINT ["/app/init.sh"]