From 204055382288d12558f900eb35d5a208a99798b5 Mon Sep 17 00:00:00 2001 From: szaimen Date: Mon, 28 Feb 2022 19:36:03 +0100 Subject: [PATCH] fix the access rights Signed-off-by: szaimen --- Containers/apache/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Containers/apache/Dockerfile b/Containers/apache/Dockerfile index e72ca4d1..730eabeb 100644 --- a/Containers/apache/Dockerfile +++ b/Containers/apache/Dockerfile @@ -59,7 +59,8 @@ COPY start.sh /usr/bin/ COPY supervisord.conf / RUN chmod +x /usr/bin/start.sh; \ chmod +r /supervisord.conf; \ - chmod +w /Caddyfile; + chmod a+w /Caddyfile; \ + chmod a+w / # Give root a random password RUN echo "root:$(openssl rand -base64 12)" | chpasswd