chore: update packageManager version to pnpm@10.12.4 in package.json

This commit is contained in:
2025-07-02 19:52:34 +00:00
committed by GitHub
parent d805410fa4
commit 52de9a51f7
3 changed files with 3 additions and 7856 deletions

View File

@@ -2,7 +2,7 @@
FROM node:22-alpine
# Install pnpm globally
RUN npm install -g pnpm@9.15.3
RUN npm install -g pnpm@10.12.4
# Set working directory
WORKDIR /app
@@ -11,7 +11,7 @@ WORKDIR /app
COPY package.json pnpm-lock.yaml ./
# Install dependencies
RUN pnpm install --frozen-lockfile
RUN pnpm install
# Copy source code
COPY . .