build(poetry): update python dependencies

This commit is contained in:
2026-07-01 20:53:01 +03:00
parent 081aa8d17f
commit 0730b9f567
5 changed files with 1872 additions and 1003 deletions

View File

@@ -1,4 +1,4 @@
FROM python:3.12 AS builder
FROM python:3.14 AS builder
ENV POETRY_HOME="/opt/poetry"
ENV PATH="$POETRY_HOME/bin:$PATH"
RUN apt update && \
@@ -22,7 +22,7 @@ RUN --mount=type=cache,target=/root/.npm \
COPY static ./
RUN npm run build
FROM python:3.12-slim
FROM python:3.14-slim
ENV PATH="/app/.venv/bin:$PATH"
WORKDIR /app