From 439e56191d31324d6396db93272efb869623dacc Mon Sep 17 00:00:00 2001 From: Franck Nijhof Date: Fri, 2 Jul 2021 12:00:15 +0200 Subject: [PATCH] =?UTF-8?q?=E2=AC=86=EF=B8=8F=20Upgrades=20add-on=20base?= =?UTF-8?q?=20image=20to=20v10.0.0=20(#150)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tautulli/Dockerfile | 20 ++++++++++---------- tautulli/build.json | 10 +++++----- 2 files changed, 15 insertions(+), 15 deletions(-) diff --git a/tautulli/Dockerfile b/tautulli/Dockerfile index e57d978..8be0cb1 100644 --- a/tautulli/Dockerfile +++ b/tautulli/Dockerfile @@ -1,4 +1,4 @@ -ARG BUILD_FROM=ghcr.io/hassio-addons/base/amd64:9.2.2 +ARG BUILD_FROM=ghcr.io/hassio-addons/base/amd64:10.0.0 # hadolint ignore=DL3006 FROM ${BUILD_FROM} @@ -18,19 +18,19 @@ COPY requirements.txt /tmp/ ARG BUILD_ARCH=amd64 RUN \ apk add --no-cache --virtual .build-dependencies \ - g++=10.2.1_pre1-r3 \ - gcc=10.2.1_pre1-r3 \ + g++=10.3.1_git20210424-r2 \ + gcc=10.3.1_git20210424-r2 \ libffi-dev=3.3-r2 \ - libressl-dev=3.1.5-r0 \ + openssl-dev=1.1.1k-r0 \ make=4.3-r0 \ - python3-dev=3.8.10-r0 \ + python3-dev=3.9.5-r1 \ \ && apk add --no-cache \ - git=2.30.2-r0 \ - libressl=3.1.5-r0 \ - patch=2.7.6-r6 \ - py3-pip=20.3.4-r0 \ - python3=3.8.10-r0 \ + git=2.32.0-r0 \ + openssl=1.1.1k-r0 \ + patch=2.7.6-r7 \ + py3-pip=20.3.4-r1 \ + python3=3.9.5-r1 \ wget=1.21.1-r1 \ \ && pip install \ diff --git a/tautulli/build.json b/tautulli/build.json index 00b1427..9105df8 100644 --- a/tautulli/build.json +++ b/tautulli/build.json @@ -1,9 +1,9 @@ { "build_from": { - "aarch64": "ghcr.io/hassio-addons/base/aarch64:9.2.2", - "amd64": "ghcr.io/hassio-addons/base/amd64:9.2.2", - "armhf": "ghcr.io/hassio-addons/base/armhf:9.2.2", - "armv7": "ghcr.io/hassio-addons/base/armv7:9.2.2", - "i386": "ghcr.io/hassio-addons/base/i386:9.2.2" + "aarch64": "ghcr.io/hassio-addons/base/aarch64:10.0.0", + "amd64": "ghcr.io/hassio-addons/base/amd64:10.0.0", + "armhf": "ghcr.io/hassio-addons/base/armhf:10.0.0", + "armv7": "ghcr.io/hassio-addons/base/armv7:10.0.0", + "i386": "ghcr.io/hassio-addons/base/i386:10.0.0" } }