Merge pull request #36 from glide-the/fix-docker

Update Dockerfile to copy only package.json for dependency installation
This commit is contained in:
Xinlu Lai 2025-08-24 04:44:38 +08:00 committed by GitHub
commit df745ac15c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -28,7 +28,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 && \