1
0
mirror of https://github.com/fHDHR/fHDHR_NextPVR.git synced 2025-12-06 03:16:58 -05:00
fHDHR_NextPVR/Dockerfile
Matt Greco eba5e7d897
Update Dockerfile
addition of pycrypto as a requirement needs gcc in order for the container to install it
2020-11-13 13:11:23 -08:00

13 lines
297 B
Docker

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