README / Dockerfile
nexusfor3rd's picture
Upload 8 files
4297e31 verified
raw
history blame contribute delete
449 Bytes
FROM python:3.11-slim
ENV DEBIAN_FRONTEND=noninteractive
ENV PYTHONUNBUFFERED=1
RUN apt-get update && apt-get install -y \
ffmpeg \
rclone \
mediainfo \
mkvtoolnix \
handbrake-cli \
p7zip-full \
curl \
unzip \
wget \
ca-certificates \
bash \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
CMD ["python", "main.py"]