From 78521b3d8b64148887eefe41c87b24f41c3c32c7 Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Wed, 20 Jan 2021 21:30:13 +0100 Subject: [PATCH] Set +e --- nextcloud/Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/nextcloud/Dockerfile b/nextcloud/Dockerfile index f1653a13c..681b461db 100644 --- a/nextcloud/Dockerfile +++ b/nextcloud/Dockerfile @@ -6,10 +6,11 @@ FROM ${BUILD_FROM}-${BUILD_VERSION} ENV NEXTCLOUD_PATH="/data/config/www/nextcloud" # Set shell -SHELL ["/bin/bash", "-o", "pipefail", "-c", "+e"] +SHELL ["/bin/bash", "-o", "pipefail", "-c"] # Add bashio -RUN apk add --no-cache \ +RUN set +e \ + apk add --no-cache \ curl \ jq \ && curl -J -L -o /tmp/bashio.tar.gz \