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:
parent
88118cd157
commit
4dd212ef7d
|
|
@ -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 ./
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue