Compare commits
2 Commits
30bca7a64a
...
8d84931fca
| Author | SHA1 | Date | |
|---|---|---|---|
|
8d84931fca
|
|||
|
7f890e927a
|
6
Dockerfile
Normal file
6
Dockerfile
Normal 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
7
requirements.txt
Normal 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
|
||||||
Reference in New Issue
Block a user