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