From c72f739d1bb1d8769401ef39ac2eb359d5079aa0 Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Wed, 14 Jul 2021 08:22:44 +0200 Subject: [PATCH] Update Dockerfile --- resiliosync/Dockerfile | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/resiliosync/Dockerfile b/resiliosync/Dockerfile index b1659259e..aa1d48b7e 100644 --- a/resiliosync/Dockerfile +++ b/resiliosync/Dockerfile @@ -4,14 +4,19 @@ ARG BUILD_UPSTREAM="2.7.2.1375" FROM ${BUILD_FROM}${BUILD_UPSTREAM} RUN \ - ################## - # Install bashio # - ################## - apk add --no-cache \ + ################ + # Install apps # + ################ + apt-get update \ + && apt-get install -y --no-install-recommends \ jq \ curl \ cifs-utils \ + keyutils \ \ + ################## + # Install bashio # + ################## && curl -J -L -o /tmp/bashio.tar.gz \ "https://github.com/hassio-addons/bashio/archive/v0.13.0.tar.gz" \ && mkdir /tmp/bashio \