Disable updates when using Docker container

This commit is contained in:
TheMeanCanEHdian 2020-02-07 08:30:47 -08:00 committed by JonnyWong16
commit 8690d2ced5
8 changed files with 104 additions and 76 deletions

View file

@ -3,6 +3,7 @@ FROM python:2.7.17-slim
LABEL maintainer="TheMeanCanEHdian"
ARG VERSION
ARG BRANCH
ENV TAUTULLI_DOCKER=True
ENV TZ=UTC
@ -16,10 +17,10 @@ apt-get install -q -y --no-install-recommends \
rm -rf /var/lib/apt/lists/* && \
pip install --no-cache-dir --upgrade pip && \
pip install --no-cache-dir --upgrade \
plexapi \
pycryptodomex \
pyopenssl && \
echo ${VERSION} > /app/version.txt
echo ${VERSION} > /app/version.txt && \
echo ${BRANCH} > /app/branch.txt
COPY . /app