Skip to content

Commit 1265293

Browse files
committed
fix: Add missing @demiurge/sdk dependency to Hub Docker build
1 parent fd3fa9c commit 1265293

2 files changed

Lines changed: 4 additions & 0 deletions

File tree

apps/hub/Dockerfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ COPY apps/hub/package.json ./apps/hub/
1313
COPY packages/qor-sdk/package.json ./packages/qor-sdk/
1414
COPY packages/ui-shared/package.json ./packages/ui-shared/
1515
COPY packages/wallet-wasm/package.json ./packages/wallet-wasm/
16+
COPY sdk/package.json ./sdk/
1617

1718
# Install all dependencies including devDependencies (needed for build)
1819
RUN npm install --workspaces --include-workspace-root || npm install
@@ -26,6 +27,7 @@ COPY --from=deps /app/node_modules ./node_modules
2627

2728
# Copy workspace packages source
2829
COPY packages/ ./packages/
30+
COPY sdk/ ./sdk/
2931

3032
# Copy hub app source
3133
COPY apps/hub/ ./apps/hub/
@@ -58,6 +60,7 @@ COPY --from=builder /app/apps/hub/package.json ./package.json
5860

5961
# Copy workspace packages (needed for runtime)
6062
COPY --from=builder /app/packages ./packages
63+
COPY --from=builder /app/sdk ./sdk
6164

6265
# Set correct permissions
6366
RUN chown -R nextjs:nodejs /app

apps/hub/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
},
1212
"dependencies": {
1313
"@demiurge/qor-sdk": "*",
14+
"@demiurge/sdk": "*",
1415
"@demiurge/ui-shared": "*",
1516
"@demiurge/wallet-wasm": "*",
1617
"@polkadot/api": "^12.0.0",

0 commit comments

Comments
 (0)