mirror of
https://github.com/NohamR/TransmissionBot.git
synced 2025-05-24 00:48:59 +00:00
9 lines
165 B
Docker
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"] |