From c7fce5f8b7f922d687198c3d3bbde410f83cfe07 Mon Sep 17 00:00:00 2001 From: bunizao <102936102+bunizao@users.noreply.github.com> Date: Sat, 1 Aug 2026 00:55:46 +0800 Subject: [PATCH] fix(docker): exclude worker from image build --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index dfb3c94..deab343 100644 --- a/Dockerfile +++ b/Dockerfile @@ -15,7 +15,7 @@ RUN npm ci COPY tsconfig.json tsup.config.ts ./ COPY src ./src -RUN npm run build +RUN npm run build:local && npm run build:remote FROM bun-runtime AS runtime WORKDIR /app