chore: lock to latest node major only

This commit is contained in:
WebStreamr 2025-09-25 07:10:26 +00:00
parent 7760c13ea9
commit a9e4ad746f
No known key found for this signature in database

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