Debugging
All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 1m23s

This commit is contained in:
Cameron Redmore 2025-08-08 19:35:24 +01:00
parent 46cc5eb8a1
commit 5678df1da0
No known key found for this signature in database

View file

@ -15,8 +15,8 @@ COPY . .
# Build the frontend with Vite and compile the server to executable # Build the frontend with Vite and compile the server to executable
RUN bun run build RUN bun run build
# Minimal production stage using Google's distroless image (glibc-based) # Minimal production stage using Debian slim (includes bash for debugging)
FROM gcr.io/distroless/cc-debian12 FROM debian:12-slim
WORKDIR /app WORKDIR /app