diff --git a/Dockerfile b/Dockerfile index 1f0f76d..0a2f7ee 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,13 +1,11 @@ FROM python:3.8.6-slim -RUN apt update && \ - apt install -y --no-install-recommends ffmpeg git && \ - apt autoremove -RUN /usr/local/bin/python -m pip install --upgrade pip - COPY requirements.txt . RUN pip install -r requirements.txt +RUN apt update && \ + apt install -y --no-install-recommends ffmpeg + COPY src . CMD [ "python", "-u", "./main.py" ]