fix(docker): copy packages/shared workspace dependency into backend and discord-gateway containers
Both services import from @bete/shared but Dockerfiles were missing the packages/shared/ copy step, causing tsc errors on build. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
co-authored by
Claude Opus 4.8
parent
88a1b59f02
commit
cd181698bc
@@ -10,6 +10,9 @@ COPY pnpm-workspace.yaml .
|
||||
COPY pnpm-lock.yaml .
|
||||
COPY package.json .
|
||||
|
||||
# Copy packages (workspace dependencies)
|
||||
COPY packages/shared ./packages/shared
|
||||
|
||||
# Copy patches (pnpm patchedDependencies)
|
||||
COPY patches ./patches
|
||||
|
||||
|
||||
@@ -13,6 +13,9 @@ COPY package.json .
|
||||
# Copy vendor packages (workspace dependencies)
|
||||
COPY vendor/discord.js-selfbot-v13 ./vendor/discord.js-selfbot-v13
|
||||
|
||||
# Copy packages (workspace dependencies)
|
||||
COPY packages/shared ./packages/shared
|
||||
|
||||
# Copy patches (pnpm patchedDependencies)
|
||||
COPY patches ./patches
|
||||
|
||||
|
||||
Reference in New Issue
Block a user