From 95ee1aa3f9ef852038d0c99c53f35577754672c4 Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Mon, 21 Jun 2021 21:22:00 +0200 Subject: [PATCH] Update code version --- sonarr/Dockerfile | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/sonarr/Dockerfile b/sonarr/Dockerfile index f4b012f1a..bd7aa0a37 100644 --- a/sonarr/Dockerfile +++ b/sonarr/Dockerfile @@ -5,10 +5,20 @@ FROM ${BUILD_FROM}${BUILD_UPSTREAM} ARG BASHIO_VERSION=0.13.0 RUN \ + ################ + # Install apps # + ################ + apt-get update \ + && apt-get install -y \ + jq \ + curl \ + cifs-utils \ + keyutils \ + \ ################## # Install bashio # ################## - mkdir -p /tmp/bashio \ + && mkdir -p /tmp/bashio \ && curl -L -f -s "https://github.com/hassio-addons/bashio/archive/v${BASHIO_VERSION}.tar.gz" \ | tar -xzf - --strip 1 -C /tmp/bashio \ && mv /tmp/bashio/lib /usr/lib/bashio \