From 8aa71bbcfb611dd5bb38d60640e797f9b354cff4 Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Sun, 3 Oct 2021 09:00:23 +0200 Subject: [PATCH] Update Dockerfile --- nextcloud/Dockerfile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/nextcloud/Dockerfile b/nextcloud/Dockerfile index 2a46c6fd7..4d2a754b1 100644 --- a/nextcloud/Dockerfile +++ b/nextcloud/Dockerfile @@ -5,12 +5,14 @@ ARG BUILD_UPSTREAM="22.2.0" FROM ${BUILD_FROM} ENV NEXTCLOUD_PATH="/data/config/www/nextcloud" +ARG BUILD_ARCH -# Added repo to solve issues with some systems that cause error code 1 when fetching apk # Add bashio RUN \ + echo "Install version $BUILD_VERSION on $BUILD_ARCH" \ #Install bashio - apk add --no-cache \ + && echo "**** Install Bashio ****" \ + && apk add --no-cache \ curl jq \ && curl -J -L -o /tmp/bashio.tar.gz \ "https://github.com/hassio-addons/bashio/archive/v0.13.1.tar.gz" \