mirror of
https://github.com/fHDHR/fHDHR_NextPVR.git
synced 2025-12-06 08:26:57 -05:00
13 lines
286 B
Docker
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"]
|