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:
MythEclipse
2026-06-02 23:33:53 +07:00
co-authored by Claude Opus 4.8
parent 88a1b59f02
commit cd181698bc
2 changed files with 6 additions and 0 deletions
+3
View File
@@ -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