From 2821b4cfae88ad9e19fb9bbe1ab8d5b30957e45e Mon Sep 17 00:00:00 2001 From: MythEclipse Date: Tue, 19 May 2026 16:36:13 +0700 Subject: [PATCH] fix: allow pnpm install to proceed without frozen lockfile in Dockerfile --- Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 3f118aa..7960461 100644 --- a/Dockerfile +++ b/Dockerfile @@ -22,7 +22,9 @@ WORKDIR /app # Install dependencies first for better caching COPY package.json pnpm-lock.yaml pnpm-workspace.yaml* ./ COPY vendor/discord.js-selfbot-v13/package.json ./vendor/discord.js-selfbot-v13/package.json -RUN pnpm install --frozen-lockfile +# Allow install to proceed in CI/docker build even if lockfile is slightly out of date. +# Prefer updating pnpm-lock.yaml in the repo as a long-term fix. +RUN pnpm install --no-frozen-lockfile # Copy the rest of the application COPY . .