From e6b1b68da94f3064253c1b8bfd5d21e917a9ea52 Mon Sep 17 00:00:00 2001 From: Geoff Scott Date: Sat, 7 Mar 2020 14:49:50 -0500 Subject: [PATCH] Made helloworld.sh executable --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index be2ca3d5..2e779572 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,4 +14,5 @@ FROM alpine COPY helloworld.sh / +RUN chmod +x /helloworld.sh CMD ["/helloworld.sh"]