1
0
mirror of https://github.com/fHDHR/fHDHR_NextPVR.git synced 2025-12-06 08:16:58 -05:00
fHDHR_NextPVR/Dockerfile
2020-10-08 11:26:53 -04:00

13 lines
286 B
Docker

FROM python:3.8-slim
RUN apt-get -qq update && \
apt-get -qq -y install ffmpeg && \
apt-get autoclean && \
rm -rf /var/lib/apt/lists/*
COPY ./ /app/
WORKDIR /app
RUN pip3 install -r requirements.txt
ENTRYPOINT ["python3", "/app/main.py", "--c", "/app/config/config.ini"]