From d4f393419a9d98b6d51e146a93b5d530282b0c82 Mon Sep 17 00:00:00 2001 From: Akshit Sethi Date: Thu, 21 Mar 2019 02:32:05 +0530 Subject: [PATCH] Make file executable (#13) --- .github/deploy-plugin/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/deploy-plugin/Dockerfile b/.github/deploy-plugin/Dockerfile index 001af34..de4f330 100644 --- a/.github/deploy-plugin/Dockerfile +++ b/.github/deploy-plugin/Dockerfile @@ -11,4 +11,5 @@ RUN apt-get update \ && rm -rf /var/lib/apt/lists/* COPY entrypoint.sh /entrypoint.sh +RUN chmod +x /entrypoint.sh ENTRYPOINT ["/entrypoint.sh"]