From 5f866b6e728e73b8a041bc7bd65db31c358deba1 Mon Sep 17 00:00:00 2001 From: Azalea <22280294+hykilpikonna@users.noreply.github.com> Date: Sun, 26 Oct 2025 18:30:34 +0800 Subject: [PATCH] Update Dockerfile --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 585d7a3..9bef981 100644 --- a/Dockerfile +++ b/Dockerfile @@ -21,11 +21,12 @@ RUN bun build \ src/index.ts # ================================================ -FROM gcr.io/distroless/base +FROM alpine:latest WORKDIR /app COPY --from=build /app/server server +COPY --from=build /app/node_modules node_modules ENV NODE_ENV=production