From bf3cf283ae023743b8477568a633a9d0f8b0f7f1 Mon Sep 17 00:00:00 2001 From: Yuzu Date: Wed, 1 Jul 2026 13:29:24 +0700 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20fix:=20skip=20lifecycle=20script?= =?UTF-8?q?s=20in=20Docker=20production=20install?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index a965762..90cff6e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,7 +12,7 @@ WORKDIR /home/node/app COPY --from=build /home/node/app/package.json . COPY --from=build /home/node/app/bun.lock . -RUN bun install --frozen-lockfile --production +RUN bun install --frozen-lockfile --production --ignore-scripts COPY --from=build /home/node/app/src ./src COPY --from=build /home/node/app/configs_example ./configs_example