fix the pnpm-lock issue
Some checks failed
docker / docker (push) Failing after 12s

Signed-off-by: ngn <ngn@ngn.tf>
This commit is contained in:
ngn
2025-05-13 01:29:21 +03:00
parent 10772a8d6f
commit 8ba89d1885
2 changed files with 3 additions and 3 deletions

View File

@ -4,7 +4,7 @@ WORKDIR /app
COPY package.json pnpm-lock.yaml ./
RUN npm install -g pnpm
RUN pnpm install --frozen-lockfile
RUN pnpm install --frozen-lockfile --force
FROM node:lts-alpine AS builder