From d1884c9b0e0abf710c92ed20e2be17f402452b1c Mon Sep 17 00:00:00 2001 From: Jafner <40403594+Jafner@users.noreply.github.com> Date: Sun, 1 Aug 2021 13:12:22 -0700 Subject: [PATCH] Explicitly define init and healthcheck as executable --- Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index c5c0c14..07978ea 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,9 @@ COPY init.sh /init.sh COPY healthcheck.sh /healthcheck.sh RUN apt-get update && \ apt-get -y upgrade && \ -apt-get -y install curl p7zip-full +apt-get -y install curl p7zip-full && \ +chmod +x /init.sh && \ +chmod +x /healthcheck.sh WORKDIR /usr/local/apache2/htdocs/ RUN mkdir download ENV IMG false