Update Dockerfile to copy only package.json for dependency installation

This commit is contained in:
glide-the 2025-08-22 02:39:54 +08:00
parent 5e3e230eed
commit e606d53e9a

View File

@ -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 && \