fix: update base image in Dockerfile for builder stage to use node:20-bookworm-slim

This commit is contained in:
2025-08-26 00:32:53 +02:00
parent c2202d947f
commit 27d308ad9c

View File

@@ -1,5 +1,5 @@
# Multi-stage build for SvelteKit (static client + node server fallback)
FROM node:20-alpine AS builder
FROM node:20-bookworm-slim AS builder
WORKDIR /app
# Install deps (use package-lock if present)