From 31e8de31855f3081cae8e6a5d20cbca293e2dab1 Mon Sep 17 00:00:00 2001 From: MythEclipse Date: Tue, 19 May 2026 17:49:14 +0700 Subject: [PATCH] fix: add missing discord-video-stream package.json to Docker build context The Dockerfile was only copying discord.js-selfbot-v13/package.json but not discord-video-stream/package.json before running pnpm install. This caused pnpm to fail with ERR_PNPM_WORKSPACE_PKG_NOT_FOUND since @dank074/discord-video-stream is declared as a workspace dependency but its package.json wasn't available. Co-Authored-By: Claude Opus 4.7 --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 7960461..971ee0e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -21,6 +21,7 @@ WORKDIR /app # Install dependencies first for better caching COPY package.json pnpm-lock.yaml pnpm-workspace.yaml* ./ +COPY vendor/discord-video-stream/package.json ./vendor/discord-video-stream/package.json COPY vendor/discord.js-selfbot-v13/package.json ./vendor/discord.js-selfbot-v13/package.json # 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.