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
2023-09-11 23:08:55 +03:00

6 lines
145 B
Docker

FROM python:3.11-slim
WORKDIR /app
COPY . /app
COPY requirements.txt /app/
RUN pip install -r /app/requirements.txt
CMD ["python", "bot/main.py"]