From fec29587a0e9f16200e48c632284bfa87e15af6d Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Fri, 4 Aug 2023 19:26:25 +0200 Subject: [PATCH] Update Dockerfile --- webtop_kde/Dockerfile | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) diff --git a/webtop_kde/Dockerfile b/webtop_kde/Dockerfile index 806f6ac6c..563f603b8 100644 --- a/webtop_kde/Dockerfile +++ b/webtop_kde/Dockerfile @@ -22,11 +22,6 @@ FROM ${BUILD_FROM} # 2 Modify Image # ################## -# Set S6 wait time -ENV S6_CMD_WAIT_FOR_SERVICES=1 \ - S6_CMD_WAIT_FOR_SERVICES_MAXTIME=0 \ - S6_SERVICES_GRACETIME=0 - ################## # 3 Install apps # ################## @@ -40,7 +35,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 00-local_mounts.sh 00-smb_mounts.sh 90-dns_set.sh" +ARG MODULES="" # 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 \ @@ -51,7 +46,7 @@ RUN if ! command -v bash >/dev/null 2>/dev/null; then (apt-get update && apt-get && chmod -R 755 /etc/cont-init.d # Manual apps -ENV PACKAGES="nginx engrampa" +ENV PACKAGES="" # Automatic apps & bashio # hadolint ignore=SC2015 @@ -66,11 +61,6 @@ RUN if ! command -v bash >/dev/null 2>/dev/null; then (apt-get update && apt-get # 4 Entrypoint # ################ -#WORKDIR / -#ENTRYPOINT [ "/usr/bin/env" ] -#CMD [ "/entrypoint.sh" ] -#SHELL ["/bin/bash", "-o", "pipefail", "-c"] - ############ # 5 Labels # ############