Update Dockerfile

This commit is contained in:
Alexandre
2023-08-31 11:18:53 +02:00
committed by GitHub
parent 29519d2b70
commit 7d5ea4c6af

View File

@@ -75,7 +75,8 @@ COPY rootfs/ /
# Corrects permissions for s6 v3
RUN if [ -d /etc/cont-init.d ]; then chmod -R 755 /etc/cont-init.d; fi && \
if [ -d /etc/services.d ]; then chmod -R 755 /etc/services.d; fi && \
if [ -f /entrypoint.sh ]; then chmod 755 /entrypoint.sh; fi
if [ -f /entrypoint.sh ]; then chmod 755 /entrypoint.sh; fi && \
if [ -f /docker-mods/entrypoint.sh ]; then chmod 755 /docker-mods/entrypoint.sh; fi
# Modules
ARG MODULES="00-banner.sh 01-custom_script.sh 00-local_mounts.sh 00-smb_mounts.sh 90-dns_set.sh"