welcomecenterbot/Dockerfile

6 lines
145 B
Docker
Raw Normal View History

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