From 4dd212ef7d1db468da921c6762d3ae16074bc72d Mon Sep 17 00:00:00 2001 From: Jeff Emmett Date: Mon, 2 Mar 2026 16:38:18 -0800 Subject: [PATCH] fix: add shared/local-first to EncryptID Docker build context login-button.ts imports encryptid-bridge from shared/local-first/ which was missing from the Dockerfile.encryptid COPY steps. Co-Authored-By: Claude Opus 4.6 --- Dockerfile.encryptid | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile.encryptid b/Dockerfile.encryptid index 2136768..03c89b7 100644 --- a/Dockerfile.encryptid +++ b/Dockerfile.encryptid @@ -18,6 +18,7 @@ RUN bun install --frozen-lockfile || bun install # Copy source COPY rspace-online/src/encryptid ./src/encryptid +COPY rspace-online/shared/local-first ./shared/local-first COPY rspace-online/public ./public COPY rspace-online/tsconfig.json ./ @@ -32,6 +33,7 @@ WORKDIR /app # Copy from builder COPY --from=builder /app/node_modules ./node_modules COPY --from=builder /app/src/encryptid ./src/encryptid +COPY --from=builder /app/shared/local-first ./shared/local-first COPY --from=builder /app/public ./public COPY --from=builder /app/package.json ./