Skip to content

Commit

Permalink
add env
Browse files Browse the repository at this point in the history
  • Loading branch information
mrhotio committed Feb 2, 2024
1 parent 191fa06 commit 4b8e45b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion linux-amd64.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 && \
Expand Down
3 changes: 2 additions & 1 deletion linux-arm64.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 && \
Expand Down

0 comments on commit 4b8e45b

Please sign in to comment.