Files
Moon-UB-overver/Dockerfile
2024-04-17 09:06:42 +05:30

7 lines
171 B
Docker

FROM python:3.12
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"]