From 0214dfeb5984b5e350fd52560b9866c263091e42 Mon Sep 17 00:00:00 2001 From: Franck Nijhof Date: Sat, 8 Jul 2023 09:17:21 +0200 Subject: [PATCH] Fix Tautulli version env (#303) --- tautulli/Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tautulli/Dockerfile b/tautulli/Dockerfile index 2db0ea8..44de641 100644 --- a/tautulli/Dockerfile +++ b/tautulli/Dockerfile @@ -2,7 +2,9 @@ ARG BUILD_FROM=ghcr.io/hassio-addons/debian-base:7.0.0 # hadolint ignore=DL3006 FROM ${BUILD_FROM} -ENV PIP_BREAK_SYSTEM_PACKAGES=1 +ENV \ + PIP_BREAK_SYSTEM_PACKAGES=1 \ + TAUTULLI_VERSION="v2.12.4" # Set shell SHELL ["/bin/bash", "-o", "pipefail", "-c"] @@ -15,7 +17,6 @@ COPY requirements.txt /tmp/ # Setup base ARG BUILD_ARCH=amd64 -ARG TAUTULLI_VERSION="v2.12.4" RUN \ apt-get update \ && apt-get install -y --no-install-recommends \