From 4b8e45bd311c0d12670581f451c160e7e49a98b3 Mon Sep 17 00:00:00 2001 From: mrhotio <26902309+mrhotio@users.noreply.github.com> Date: Fri, 2 Feb 2024 12:18:20 +0100 Subject: [PATCH] add env --- linux-amd64.Dockerfile | 3 ++- linux-arm64.Dockerfile | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/linux-amd64.Dockerfile b/linux-amd64.Dockerfile index 7c2c4f13b..709e549ae 100644 --- a/linux-amd64.Dockerfile +++ b/linux-amd64.Dockerfile @@ -3,7 +3,8 @@ ARG UPSTREAM_DIGEST_AMD64 FROM ${UPSTREAM_IMAGE}@${UPSTREAM_DIGEST_AMD64} EXPOSE 8181 -ENV TAUTULLI_DOCKER="True" WEBUI_PORTS="8181/tcp,8181/udp" +ARG IMAGE_STATS +ENV IMAGE_STATS=${IMAGE_STATS} TAUTULLI_DOCKER="True" WEBUI_PORTS="8181/tcp,8181/udp" RUN apk add --no-cache python3 py3-lxml py3-openssl py3-setuptools && \ apk add --no-cache --virtual=build-dependencies py3-pip make gcc g++ python3-dev && \ diff --git a/linux-arm64.Dockerfile b/linux-arm64.Dockerfile index 636b3ef4f..7c1f512be 100644 --- a/linux-arm64.Dockerfile +++ b/linux-arm64.Dockerfile @@ -3,7 +3,8 @@ ARG UPSTREAM_DIGEST_ARM64 FROM ${UPSTREAM_IMAGE}@${UPSTREAM_DIGEST_ARM64} EXPOSE 8181 -ENV TAUTULLI_DOCKER="True" WEBUI_PORTS="8181/tcp,8181/udp" +ARG IMAGE_STATS +ENV IMAGE_STATS=${IMAGE_STATS} TAUTULLI_DOCKER="True" WEBUI_PORTS="8181/tcp,8181/udp" RUN apk add --no-cache python3 py3-lxml py3-openssl py3-setuptools && \ apk add --no-cache --virtual=build-dependencies py3-pip make gcc g++ python3-dev && \