TransmissionBot/Dockerfile
√(noham)² d93b308a23 tmp
2024-01-02 18:17:12 +01:00

9 lines
165 B
Docker

FROM python:3.10-alpine
COPY bot.py .
COPY requirements.txt .
COPY config.json .
RUN pip install --no-cache-dir -r requirements.txt
CMD ["python", "-u", "bot.py"]