Files
downloads-all-bot/Dockerfile
2026-01-02 17:48:48 +07:00

18 lines
298 B
Docker

FROM python:3.11-slim
RUN apt update && apt install -y \
ffmpeg \
wireguard \
iproute2 \
iptables \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /DownloadSM_2
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY bot ./bot
CMD ["python", "bot/main.py"]