From 9b66192226e5a4d9f902c019a652d9ab7f0ebd12 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 --- 5etools-docker/Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/5etools-docker/Dockerfile b/5etools-docker/Dockerfile index c5c0c14f..07978eab 100644 --- a/5etools-docker/Dockerfile +++ b/5etools-docker/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