From e16a7f019b61fb2c56aecdbec72d3ba28db6bd78 Mon Sep 17 00:00:00 2001 From: Franck Nijhof Date: Sun, 26 Mar 2023 18:34:57 +0200 Subject: [PATCH] Fix the Tautulli version not being set up as env variable (#287) --- .github/renovate.json | 2 +- tautulli/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/renovate.json b/.github/renovate.json index fa1d37d..91af0b1 100644 --- a/.github/renovate.json +++ b/.github/renovate.json @@ -28,7 +28,7 @@ { "fileMatch": ["/Dockerfile$"], "matchStrings": [ - "ARG TAUTULLI_VERSION=[\"']?(?.+?)[\"']?\\s+" + "ENV TAUTULLI_VERSION=[\"']?(?.+?)[\"']?\\s+" ], "datasourceTemplate": "github-releases", "depNameTemplate": "Tautulli/Tautulli" diff --git a/tautulli/Dockerfile b/tautulli/Dockerfile index 4ecdf92..c7d09de 100644 --- a/tautulli/Dockerfile +++ b/tautulli/Dockerfile @@ -13,7 +13,7 @@ COPY requirements.txt /tmp/ # Setup base ARG BUILD_ARCH=amd64 -ARG TAUTULLI_VERSION="v2.12.2" +ENV TAUTULLI_VERSION="v2.12.2" RUN \ apt-get update \ && apt-get install -y --no-install-recommends \