From 21dbc832c5a4510160bc5ce97db051334e74a4e7 Mon Sep 17 00:00:00 2001 From: eikendev Date: Tue, 31 Mar 2020 19:52:04 +0200 Subject: [PATCH] Remove chmod from Dockerfile Apparently, GitHub Actions disallows the use of `chmod` in this case. --- Dockerfile | 2 -- 1 file changed, 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 27bbfba..d92f7cb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,6 +2,4 @@ FROM curlimages/curl:latest COPY entrypoint.sh /entrypoint.sh -RUN chmod +x /entrypoint.sh - ENTRYPOINT ["/entrypoint.sh"]