From 5f436de1fe85c97beb25a2934f3a6eeb91c860a4 Mon Sep 17 00:00:00 2001 From: Steven Polley Date: Sun, 25 Jun 2023 11:11:14 -0600 Subject: [PATCH] chmod +x the entrypoint script --- Dockerfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index f44f9f2..6c2f4e1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,7 +7,10 @@ FROM httpd:alpine # Copy in our configuration files. COPY conf/ conf/ -RUN set -ex; \ +COPY docker-entrypoint.sh /usr/local/bin/docker-entrypoint.sh + +RUN chmod +x /usr/local/bin/docker-entrypoint.sh; \ + set -ex; \ # Create empty default DocumentRoot. mkdir -p "/var/www/html"; \ # Create directories for Dav data and lock database.