diff --git a/CHANGELOG.md b/CHANGELOG.md index 36be232d..0f9bde13 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,6 +16,7 @@ These changes are awaiting release: - Package.json: Use exact version for all packages. - .npmrc: Enable `ignore-scripts` (still on npm 11) and set `min-release-age=14`. - Workflows: Upgrade action versions & set Node version to `24`. +- Dockerfile: Upgrade node steps to use version `24`. # [4.1.1] - 2026-07-26T02:00:00Z diff --git a/Dockerfile b/Dockerfile index 46dd0e96..bb3fc804 100644 --- a/Dockerfile +++ b/Dockerfile @@ -18,7 +18,7 @@ RUN go mod download && GOOS=linux CGO_ENABLED=1 CGO_CFLAGS="-D_LARGEFILE64_SOURC # # Frontend # -FROM node:20-alpine AS ui +FROM node:24-alpine AS ui WORKDIR /app COPY package*.json vite.config.ts svelte.config.js tsconfig.json ./ @@ -30,7 +30,7 @@ RUN npm install && npm run build # # Production # -FROM node:20-alpine AS runner +FROM node:24-alpine AS runner COPY --from=server /server/watcharr / COPY --from=ui /app/build /ui