welcomecenterbot/Dockerfile

6 lines
134 B
Docker
Raw Normal View History

2023-09-11 20:04:53 +00:00
FROM python:3.11-slim
WORKDIR /app
2023-09-11 20:16:36 +00:00
COPY requirements.txt .
RUN pip install -r requirements.txt
COPY . .
2023-09-11 20:04:53 +00:00
CMD ["python", "bot/main.py"]