Garde-Havoc/bot/Dockerfile

9 lines
146 B
Docker
Raw 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 . .
CMD ["python", "main.py"]