1
0
mirror of https://github.com/fHDHR/fHDHR_NextPVR.git synced 2025-12-06 11:16:58 -05:00

Merge pull request #53 from crackers8199/patch-1

Update Dockerfile
This commit is contained in:
Deathbybandaid 2020-11-13 16:13:18 -05:00 committed by GitHub
commit de5018d084
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,7 +1,7 @@
FROM python:3.8-slim
RUN apt-get -qq update && \
apt-get -qq -y install ffmpeg && \
apt-get -qq -y install ffmpeg gcc && \
apt-get autoclean && \
rm -rf /var/lib/apt/lists/*
@ -9,4 +9,4 @@ COPY ./ /app/
WORKDIR /app
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"]