Dockerfile: Upgrade node steps to use version 24.

This commit is contained in:
IRHM
2026-07-26 20:39:37 +01:00
committed by momi
parent 31ddcacf47
commit baba8c8c60
2 changed files with 3 additions and 2 deletions
+1
View File
@@ -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
+2 -2
View File
@@ -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