mirror of
https://github.com/sbondCo/Watcharr.git
synced 2026-08-07 07:14:44 +00:00
Dockerfile: Upgrade node steps to use version 24.
This commit is contained in:
@@ -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
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user