From 7e6195eb2c829ab840a0dc33bffb12af1ae00004 Mon Sep 17 00:00:00 2001 From: Cameron Redmore Date: Fri, 8 Aug 2025 20:21:12 +0100 Subject: [PATCH] Add the server back to the right location. --- Dockerfile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 30fcab6..b387eee 100644 --- a/Dockerfile +++ b/Dockerfile @@ -16,11 +16,13 @@ COPY . . RUN bun run build # Minimal production stage using distroless debian -FROM debian:12 +FROM gcr.io/distroless/cc-debian12 + WORKDIR /app # Copy the built assets -COPY --from=builder /app/dist/* /app/dist/ +COPY --from=builder /app/dist/server /app/server +COPY --from=builder /app/dist/ /app/dist/ COPY --from=builder /app/dist/assets /app/dist/assets # Expose the port