Plex-Meta-Manager/Dockerfile

21 lines
630 B
Docker
Raw Normal View History

2021-01-20 21:37:59 +00:00
FROM python:3-slim
VOLUME /config
COPY . /
RUN \
echo "**** install system packages ****" && \
apt-get update && \
apt-get upgrade -y --no-install-recommends && \
apt-get install -y tzdata --no-install-recommends && \
2021-02-16 21:52:17 +00:00
apt-get install -y gcc g++ libxml2-dev libxslt-dev libz-dev && \
2021-01-20 21:37:59 +00:00
echo "**** install python packages ****" && \
pip3 install --no-cache-dir --upgrade --requirement /requirements.txt && \
echo "**** cleanup ****" && \
apt-get autoremove -y && \
apt-get clean && \
rm -rf \
/requirements.txt \
/tmp/* \
/var/tmp/* \
/var/lib/apt/lists/*
ENTRYPOINT ["python3", "plex_meta_manager.py"]