Change pnpm install to use --force option

This commit is contained in:
Steven Noack 2025-12-11 06:34:13 +01:00 committed by GitHub
parent 8c7648d330
commit 2f3c6a2c20
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -9,7 +9,7 @@ WORKDIR /app
COPY package.json pnpm-lock.yaml ./ COPY package.json pnpm-lock.yaml ./
# Install dependencies # Install dependencies
RUN pnpm install --frozen-lockfile RUN pnpm install --force
# Copy source # Copy source
COPY . . COPY . .