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 <noreply@anthropic.com>
This commit is contained in:
Jeff Emmett 2026-03-02 16:38:18 -08:00
parent 88118cd157
commit 4dd212ef7d
1 changed files with 2 additions and 0 deletions

View File

@ -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 ./