feat: switch to node-alpine

This commit is contained in:
WebStreamr 2025-05-07 21:17:20 +00:00
parent 1494b2524e
commit 98d391ff79
No known key found for this signature in database

View file

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