version update
This commit is contained in:
+3
-3
@@ -1,4 +1,4 @@
|
|||||||
FROM python:3.11-slim AS builder
|
FROM python:3.12-slim AS builder
|
||||||
|
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
|
|
||||||
@@ -7,11 +7,11 @@ COPY requirements.txt .
|
|||||||
RUN --mount=type=cache,target=/root/.cache/pip \
|
RUN --mount=type=cache,target=/root/.cache/pip \
|
||||||
pip install --no-cache-dir -r requirements.txt
|
pip install --no-cache-dir -r requirements.txt
|
||||||
|
|
||||||
FROM python:3.11-slim
|
FROM python:3.12-slim
|
||||||
|
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
|
|
||||||
COPY --from=builder /usr/local/lib/python3.11/site-packages /usr/local/lib/python3.11/site-packages
|
COPY --from=builder /usr/local/lib/python3.12/site-packages /usr/local/lib/python3.12/site-packages
|
||||||
|
|
||||||
COPY . .
|
COPY . .
|
||||||
|
|
||||||
|
|||||||
@@ -24,7 +24,7 @@
|
|||||||
|
|
||||||
## 🚀 Технологии
|
## 🚀 Технологии
|
||||||
|
|
||||||
- **Python 3.11**
|
- **Python 3.12**
|
||||||
- **Aiogram 3.x:** Асинхронный фреймворк для Telegram ботов.
|
- **Aiogram 3.x:** Асинхронный фреймворк для Telegram ботов.
|
||||||
- **aiohttp:** Для запуска веб-сервера (вебхуки).
|
- **aiohttp:** Для запуска веб-сервера (вебхуки).
|
||||||
- **SQLAlchemy 2.x & asyncpg:** Асинхронная работа с базой данных PostgreSQL.
|
- **SQLAlchemy 2.x & asyncpg:** Асинхронная работа с базой данных PostgreSQL.
|
||||||
|
|||||||
+8
-8
@@ -1,10 +1,10 @@
|
|||||||
aiogram==3.21.0
|
aiogram==3.24.0
|
||||||
python-dotenv==1.0.1
|
python-dotenv==1.2.1
|
||||||
aiohttp==3.12.14
|
aiohttp==3.13.3
|
||||||
pydantic==2.7.1
|
pydantic==2.12.5
|
||||||
yookassa==3.5.0
|
yookassa==3.9.0
|
||||||
nalogo==1.0.0
|
nalogo==1.0.0
|
||||||
pydantic_settings
|
pydantic_settings==2.12.0
|
||||||
sqlalchemy[asyncio]==2.0.29
|
sqlalchemy[asyncio]==2.0.45
|
||||||
asyncpg==0.29.0
|
asyncpg==0.31.0
|
||||||
aiocryptopay==0.4.8
|
aiocryptopay==0.4.8
|
||||||
|
|||||||
Reference in New Issue
Block a user