Garde-Havoc/bot/Dockerfile

9 lines
145 B
Docker
Raw Permalink Normal View History

2024-07-24 14:46:46 +02:00
FROM python:3.12.4
ADD requirements.txt .
RUN pip install --upgrade pip
RUN pip install -r requirements.txt
ADD . .
2024-10-09 18:29:51 +02:00
CMD ["python", "bot.py"]