fix(docker): fix docker node version

fix docker node version to node v20.20.0
This commit is contained in:
Raiper34
2026-02-07 22:25:25 +00:00
parent c3f5bcca13
commit a14f5eab68
+2 -2
View File
@@ -1,10 +1,10 @@
FROM node:18.20.4-alpine AS builder FROM node:20.20.0-alpine AS builder
WORKDIR /spooty WORKDIR /spooty
COPY . . COPY . .
RUN npm ci RUN npm ci
RUN npm run build RUN npm run build
FROM node:18.20.4-alpine FROM node:20.20.0-alpine
WORKDIR /spooty WORKDIR /spooty
COPY --from=builder /spooty/dist . COPY --from=builder /spooty/dist .
COPY --from=builder /spooty/src ./src COPY --from=builder /spooty/src ./src