From e606d53e9ac3115c22f782c2c61989b11581b765 Mon Sep 17 00:00:00 2001 From: glide-the <2533736852@qq.com> Date: Fri, 22 Aug 2025 02:39:54 +0800 Subject: [PATCH] Update Dockerfile to copy only package.json for dependency installation --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 2ecb225..c912e3b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -27,7 +27,7 @@ ENV PATH="/root/.bun/bin:$PATH" WORKDIR /app # Copy package files -COPY package.json pnpm-lock.yaml ./ +COPY package.json ./ # Install pnpm and dependencies RUN npm install -g pnpm && \