This commit is contained in:
Abhi
2024-01-06 02:31:43 +00:00
committed by GitHub
parent 522ed692c2
commit 90dfead5a4
2 changed files with 51 additions and 1 deletions

View File

@@ -1,5 +1,6 @@
FROM python:3.11
WORKDIR /app
COPY . /app
RUN apt -qq update && apt -qq install -y git wget ffmpeg mediainfo
RUN pip install -r requirements.txt
CMD ["python", "main.py"]