not working shit

This commit is contained in:
2023-11-12 22:43:47 +03:00
commit 9f76abcfc4
10 changed files with 410 additions and 0 deletions

7
bot/Dockerfile Normal file
View File

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