From 84a71a3a3a7ebd5c1ee51147d34d5043d1d97d6e Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Sun, 8 Jan 2023 09:35:10 +0100 Subject: [PATCH] Update Dockerfile --- spotweb/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spotweb/Dockerfile b/spotweb/Dockerfile index 57beecfb1..329b03fd2 100644 --- a/spotweb/Dockerfile +++ b/spotweb/Dockerfile @@ -98,7 +98,7 @@ RUN if [ -d /etc/cont-init.d ]; then chmod -R 755 /etc/cont-init.d; fi && \ if [ -f /entrypoint.sh ]; then chmod 755 /entrypoint.sh; fi # Modules -ARG MODULES="00-banner.sh 01-custom_script.sh" +ARG MODULES="01-custom_script.sh" # Automatic modules download RUN if ! command -v bash >/dev/null 2>/dev/null; then (apt-get update && apt-get install -yqq --no-install-recommends bash || apk add --no-cache bash) >/dev/null; fi \