update node and python
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2025-11-13 14:31:47 +00:00
parent 4150a17a37
commit 40da285b9f
5 changed files with 398 additions and 269 deletions

View File

@@ -1,4 +1,4 @@
FROM node:22-slim AS frontend
FROM node:24-slim AS frontend
WORKDIR /app
COPY package*.json ./
RUN npm ci
@@ -6,10 +6,10 @@ COPY . .
RUN npm run build
# CMD ["npm", "run", "server"]
FROM python:3.12-slim
FROM python:3.14-slim
COPY --from=frontend /app/dist /app/dist
WORKDIR /app/server-python
COPY --from=ghcr.io/astral-sh/uv:0.5.21 /uv /bin/uv
COPY --from=ghcr.io/astral-sh/uv:0.9.9 /uv /bin/uv
COPY server-python/pyproject.toml server-python/uv.lock ./
RUN uv sync --no-dev --frozen
COPY server-python/app.py .