From 0dc1a35365eac1898175606d54a5ab1f8030201e Mon Sep 17 00:00:00 2001 From: yuetsh <517252939@qq.com> Date: Tue, 16 Jun 2026 09:08:13 -0600 Subject: [PATCH] fix --- Dockerfile | 6 ------ 1 file changed, 6 deletions(-) diff --git a/Dockerfile b/Dockerfile index 59b711a..b7f1c32 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,9 +2,6 @@ FROM oven/bun:1 AS builder WORKDIR /app -ARG BUN_REGISTRY=https://registry.npmmirror.com -ENV BUN_CONFIG_REGISTRY=${BUN_REGISTRY} - COPY package.json bun.lock ./ RUN bun install --frozen-lockfile @@ -15,9 +12,6 @@ RUN bun run build FROM oven/bun:1-slim AS runner WORKDIR /app -ARG BUN_REGISTRY=https://registry.npmmirror.com -ENV BUN_CONFIG_REGISTRY=${BUN_REGISTRY} - COPY package.json bun.lock ./ RUN bun install --frozen-lockfile --production