Plex-Meta-Manager/Dockerfile

22 lines
946 B
Text
Raw Normal View History

FROM python:3.10-slim-buster
2022-03-06 08:44:12 +01:00
ENV TINI_VERSION v0.19.0
2022-11-16 09:49:25 -05:00
ENV PMM_DOCKER True
COPY . /
2021-08-04 09:46:42 -04:00
RUN echo "**** install system packages ****" \
&& apt-get update \
&& apt-get upgrade -y --no-install-recommends \
&& apt-get install -y tzdata --no-install-recommends \
2022-06-23 11:39:37 -04:00
&& apt-get install -y gcc g++ libxml2-dev libxslt-dev libz-dev libjpeg62-turbo-dev zlib1g-dev wget \
&& wget -O /tini https://github.com/krallin/tini/releases/download/${TINI_VERSION}/tini-"$(dpkg --print-architecture | awk -F- '{ print $NF }')" \
&& chmod +x /tini \
2021-08-04 09:46:42 -04:00
&& pip3 install --no-cache-dir --upgrade --requirement /requirements.txt \
&& apt-get --purge autoremove wget gcc g++ libxml2-dev libxslt-dev libz-dev -y \
2021-08-04 09:46:42 -04:00
&& apt-get clean \
&& apt-get update \
&& apt-get check \
&& apt-get -f install \
&& apt-get autoclean \
2021-08-04 09:46:42 -04:00
&& rm -rf /requirements.txt /tmp/* /var/tmp/* /var/lib/apt/lists/*
VOLUME /config
2022-03-08 11:19:27 -05:00
ENTRYPOINT ["/tini", "-s", "python3", "plex_meta_manager.py", "--"]