first one

This commit is contained in:
2023-06-05 16:31:04 +03:00
commit e25080d054
11 changed files with 165 additions and 0 deletions

7
bot/Dockerfile Normal file
View File

@ -0,0 +1,7 @@
FROM python:3.11.3
WORKDIR /app
COPY requirements.txt .
RUN pip install -r requirements.txt
ADD app/ .
ENTRYPOINT ["python"]
CMD ["/app/bot.py"]