chore: switch to non-alpine based node image

to hopefully improve the tls fingerprint
This commit is contained in:
WebStreamr 2025-11-29 16:13:29 +00:00
parent 362bef9f57
commit 9f7155f42e
No known key found for this signature in database

View file

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