build(deps): Node.js 22 -> 24 (Dockerfile + CI). Closes #9
CI/CD Pipeline / test (pull_request) Successful in 11s
CI/CD Pipeline / build-and-push (pull_request) Has been skipped

This commit is contained in:
Millaguie
2026-07-08 00:42:21 +02:00
parent 782c3e79b0
commit e65f90ee80
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -20,7 +20,7 @@ jobs:
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: '22'
node-version: '24'
- name: Server — install & typecheck
working-directory: server
+2 -2
View File
@@ -2,7 +2,7 @@
# Imagen única: construye el front (Vite) y lo sirve desde el servidor (Fastify + Socket.IO).
# ---- build del front ----
FROM node:22-alpine AS web
FROM node:24-alpine AS web
WORKDIR /web
COPY web/package.json web/package-lock.json* ./
RUN npm install
@@ -10,7 +10,7 @@ COPY web/ ./
RUN npm run build # -> /web/dist
# ---- producción ----
FROM node:22-alpine AS production
FROM node:24-alpine AS production
WORKDIR /app
# deps del servidor (incluye tsx y drizzle-kit; NODE_ENV se fija DESPUÉS para no
# saltarse las devDependencies durante la instalación)