Fix the Tautulli version not being set up as env variable (#287)

This commit is contained in:
Franck Nijhof 2023-03-26 18:34:57 +02:00 committed by GitHub
parent c745a34039
commit e16a7f019b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -28,7 +28,7 @@
{ {
"fileMatch": ["/Dockerfile$"], "fileMatch": ["/Dockerfile$"],
"matchStrings": [ "matchStrings": [
"ARG TAUTULLI_VERSION=[\"']?(?<currentValue>.+?)[\"']?\\s+" "ENV TAUTULLI_VERSION=[\"']?(?<currentValue>.+?)[\"']?\\s+"
], ],
"datasourceTemplate": "github-releases", "datasourceTemplate": "github-releases",
"depNameTemplate": "Tautulli/Tautulli" "depNameTemplate": "Tautulli/Tautulli"

View file

@ -13,7 +13,7 @@ COPY requirements.txt /tmp/
# Setup base # Setup base
ARG BUILD_ARCH=amd64 ARG BUILD_ARCH=amd64
ARG TAUTULLI_VERSION="v2.12.2" ENV TAUTULLI_VERSION="v2.12.2"
RUN \ RUN \
apt-get update \ apt-get update \
&& apt-get install -y --no-install-recommends \ && apt-get install -y --no-install-recommends \