Files
Moon-UB-overver/Dockerfile
2024-01-06 02:31:43 +00:00

6 lines
170 B
Docker

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"]