Skip to content

Commit 2b2930b

Browse files
phernandezclaude
andcommitted
fix: bump Dockerfile to Node 25 to match local npm lock file format
npm ci was failing in CI because the lock file was generated with npm 11 (Node 25) but the Docker build used Node 22 (npm 10), which couldn't parse it. 🔧 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 6006a94 commit 2b2930b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:22-bullseye AS build
1+
FROM node:25-bullseye AS build
22
WORKDIR /app
33

44
ARG CACHE_BUST=unknown
@@ -16,7 +16,7 @@ COPY . .
1616
RUN npx nuxt prepare && npx nuxt build
1717

1818
# Production image
19-
FROM node:22-slim AS prod
19+
FROM node:25-slim AS prod
2020

2121
RUN apt-get update && apt-get install -y \
2222
curl \

0 commit comments

Comments
 (0)