From 9f7155f42e2ca68822c9b1c121b6bb3604f2e35d Mon Sep 17 00:00:00 2001 From: WebStreamr <210764791+webstreamr@users.noreply.github.com> Date: Sat, 29 Nov 2025 16:13:29 +0000 Subject: [PATCH] chore: switch to non-alpine based node image to hopefully improve the tls fingerprint --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index bd573b4..3e3c29b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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