This repository has been archived on 2025-07-30. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
welcomecenterbot/Dockerfile

6 lines
134 B
Docker
Raw Normal View History

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