mirror of
https://github.com/hassio-addons/addon-tautulli.git
synced 2025-05-04 19:11:24 +00:00
Fix the Tautulli version not being set up as env variable (#287)
This commit is contained in:
parent
c745a34039
commit
e16a7f019b
2 changed files with 2 additions and 2 deletions
2
.github/renovate.json
vendored
2
.github/renovate.json
vendored
|
@ -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"
|
||||||
|
|
|
@ -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 \
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue