1
0
mirror of https://github.com/civsocit/olgram.git synced 2025-12-16 19:26:19 +00:00

Пример Instance бота, разные команды

This commit is contained in:
mihalin
2021-06-29 15:29:41 +03:00
parent 4e70ebf32c
commit d738da2fa9
15 changed files with 221 additions and 33 deletions

10
instance/Dockerfile Normal file
View File

@@ -0,0 +1,10 @@
FROM python:3.8-buster
COPY . /app
WORKDIR /app
RUN pip install --upgrade pip && \
pip install -r requirements.txt && \
CMD ["python", "instance"]