From f4ff56bfcfa124cb470d4fe917cb4784b404fe1c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=9B=BC=E5=85=AE?= <63710193+confuseder@users.noreply.github.com> Date: Thu, 12 Feb 2026 01:10:53 +0800 Subject: [PATCH] fix: mistakes in agent's Dokcerfile --- Dockerfile.agent | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile.agent b/Dockerfile.agent index e77893ae..d0ef24a5 100644 --- a/Dockerfile.agent +++ b/Dockerfile.agent @@ -8,7 +8,7 @@ RUN bun install COPY agent/ ./ -RUN bun run build +RUN bun run build --external jsdom FROM oven/bun:1-alpine @@ -16,6 +16,7 @@ WORKDIR /app RUN apk add --no-cache ca-certificates wget +COPY config.toml / COPY --from=builder /build/dist /app/dist COPY --from=builder /build/node_modules /app/node_modules COPY --from=builder /build/package.json /app/package.json