From c8d0254578b14db453fcd99cfa874f73cdc335ae Mon Sep 17 00:00:00 2001 From: Pavel Dvoinos Date: Tue, 3 Nov 2020 02:49:00 +0200 Subject: [PATCH] chmod +x --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index fa0188a..747241f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,6 +3,7 @@ FROM alpine:3.10 # Copies your code file from your action repository to the filesystem path `/` of the container COPY entrypoint.sh /entrypoint.sh +RUN chmod +x /entrypoint.sh # Code file to execute when the docker container starts up (`entrypoint.sh`) ENTRYPOINT ["/entrypoint.sh"]