From 5678df1da02c0ac615f47bd109b335d5d0cd3a29 Mon Sep 17 00:00:00 2001 From: Cameron Redmore Date: Fri, 8 Aug 2025 19:35:24 +0100 Subject: [PATCH] Debugging --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index dedb61e..eec3b75 100644 --- a/Dockerfile +++ b/Dockerfile @@ -15,8 +15,8 @@ COPY . . # Build the frontend with Vite and compile the server to executable RUN bun run build -# Minimal production stage using Google's distroless image (glibc-based) -FROM gcr.io/distroless/cc-debian12 +# Minimal production stage using Debian slim (includes bash for debugging) +FROM debian:12-slim WORKDIR /app