update node and python
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
@@ -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 .
|
||||
|
||||
Reference in New Issue
Block a user