From 27a7d56168841bec9f1170d16c70ca8b58a7c39a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=B2=20Boschi?= Date: Wed, 3 Dec 2025 17:01:04 +0100 Subject: [PATCH] swith cp docker image to musl --- docker/standalone/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/standalone/Dockerfile b/docker/standalone/Dockerfile index f2eba101..1eb9ab43 100644 --- a/docker/standalone/Dockerfile +++ b/docker/standalone/Dockerfile @@ -47,7 +47,7 @@ COPY hindsight-api/alembic ./alembic # ============================================================================= # Stage: SDK Builder (needed for Control Plane) # ============================================================================= -FROM node:20-alpine AS sdk-builder +FROM node:20-slim AS sdk-builder ARG INCLUDE_CP RUN if [ "$INCLUDE_CP" != "true" ]; then echo "Skipping SDK build" && exit 0; fi @@ -63,7 +63,7 @@ RUN npm run build # ============================================================================= # Stage: Control Plane Builder # ============================================================================= -FROM node:20-alpine AS cp-builder +FROM node:20-slim AS cp-builder ARG INCLUDE_CP RUN if [ "$INCLUDE_CP" != "true" ]; then echo "Skipping CP build" && exit 0; fi