1
0
mirror of https://github.com/fHDHR/fHDHR_NextPVR.git synced 2025-12-06 09:36:59 -05:00

Update Dockerfile

addition of pycrypto as a requirement needs gcc in order for the container to install it
This commit is contained in:
Matt Greco 2020-11-13 13:11:23 -08:00 committed by GitHub
parent f3ff2c37f6
commit eba5e7d897
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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