From 715fa647c94f9ec0ddb5f40aac5c775fa56b2059 Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Sun, 6 Feb 2022 18:21:33 +0100 Subject: [PATCH] Update Dockerfile --- webtop_kde/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/webtop_kde/Dockerfile b/webtop_kde/Dockerfile index 3471dfaa3..51a59391d 100644 --- a/webtop_kde/Dockerfile +++ b/webtop_kde/Dockerfile @@ -51,7 +51,7 @@ RUN if ! command -v bash >/dev/null 2>/dev/null; then (apt-get update && apt-get && if ! command -v curl >/dev/null 2>/dev/null; then (apt-get update && apt-get install -yqq --no-install-recommends curl || apk add --no-cache curl) >/dev/null; fi \ && mkdir -p /etc/cont-init.d \ && for scripts in $MODULES; do curl -L -f -s -S "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/$scripts" -o /etc/cont-init.d/"$scripts" || (echo "script failed to install $scripts" && exit 1); done \ - && chmod -R 755 /etc/cont-init.d || printf '%s\n' "${MODULES}" >/MODULESFILE + && chmod -R 755 /etc/cont-init.d # Manual apps ENV PACKAGES="engrampa mesa-dri-vc4 mesa-dri-swrast mesa-gbm xf86-video-fbdev" @@ -62,7 +62,7 @@ RUN if ! command -v bash >/dev/null 2>/dev/null; then (apt-get update && apt-get && curl -L -f -s "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/automatic_packages.sh" --output /automatic_packages.sh \ && chmod 777 /automatic_packages.sh \ && eval /./automatic_packages.sh "${PACKAGES:-}" \ - && rm /automatic_packages.sh || printf '%s\n' "${PACKAGES:-}" > /ENVFILE + && rm /automatic_packages.sh ################ # 4 Entrypoint #