Compare commits

..

2 Commits

Author SHA1 Message Date
8d84931fca add Dockerfile and requirements.txt
All checks were successful
Build and Run VSTU Public TG bot / build_and_run (push) Successful in 27s
2026-04-05 22:35:03 +03:00
7f890e927a add Dockerfile and requirements.txt 2026-04-05 22:34:47 +03:00
2 changed files with 13 additions and 0 deletions

6
Dockerfile Normal file
View File

@@ -0,0 +1,6 @@
FROM python:3.11-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir --upgrade pip && pip install --no-cache-dir -r requirements.txt
COPY . .
CMD ["python", "-u", "main.py"]

7
requirements.txt Normal file
View File

@@ -0,0 +1,7 @@
aio_pika==9.6.2
aiogram==3.27.0
aiohttp==3.11.16
aiohttp_socks==0.11.0
python-dotenv==1.2.2
SQLAlchemy==2.0.49
asyncpg