From f917f129328c5a7b1a7ef1feee2509b4fc6af704 Mon Sep 17 00:00:00 2001 From: Zoey Date: Fri, 12 May 2023 18:00:33 +0200 Subject: [PATCH] move mastercontainer.conf to the end Signed-off-by: Zoey --- Containers/mastercontainer/Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Containers/mastercontainer/Dockerfile b/Containers/mastercontainer/Dockerfile index b01bea51..4ac4d390 100644 --- a/Containers/mastercontainer/Dockerfile +++ b/Containers/mastercontainer/Dockerfile @@ -11,8 +11,6 @@ EXPOSE 80 EXPOSE 8080 EXPOSE 8443 -COPY mastercontainer.conf /etc/apache2/sites-available/mastercontainer.conf - COPY --from=caddy /usr/bin/caddy /usr/bin/caddy COPY --from=docker /usr/local/bin/docker /usr/local/bin/docker @@ -111,6 +109,7 @@ RUN set -ex; \ COPY --chmod=775 *.sh / COPY --chmod=664 Caddyfile /Caddyfile COPY --chmod=664 supervisord.conf /supervisord.conf +COPY mastercontainer.conf /etc/apache2/sites-available/mastercontainer.conf USER root