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