chore: lock to latest node major only (#382)

This commit is contained in:
webstreamr 2025-09-25 09:11:35 +02:00 committed by GitHub
parent 7760c13ea9
commit 0ff0758b74
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,4 +1,4 @@
FROM node:22.20-alpine AS builder
FROM node:22-alpine AS builder
WORKDIR /app
COPY package*.json ./
@ -10,7 +10,7 @@ RUN npm run build
RUN npm ci --only=production
FROM node:22.20-alpine
FROM node:22-alpine
WORKDIR /app
COPY --from=builder /app/dist ./dist