Skip to content

Commit

Permalink
Fix the Tautulli version not being set up as env variable (#287)
Browse files Browse the repository at this point in the history
  • Loading branch information
frenck authored Mar 26, 2023
1 parent c745a34 commit e16a7f0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
{
"fileMatch": ["/Dockerfile$"],
"matchStrings": [
"ARG TAUTULLI_VERSION=[\"']?(?<currentValue>.+?)[\"']?\\s+"
"ENV TAUTULLI_VERSION=[\"']?(?<currentValue>.+?)[\"']?\\s+"
],
"datasourceTemplate": "github-releases",
"depNameTemplate": "Tautulli/Tautulli"
Expand Down
2 changes: 1 addition & 1 deletion tautulli/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand Down

0 comments on commit e16a7f0

Please sign in to comment.