From ae6cf188a930d7c1c8b315eb3c4946257334134e Mon Sep 17 00:00:00 2001 From: Jeff Emmett Date: Wed, 4 Mar 2026 11:15:19 -0800 Subject: [PATCH] fix: add notification-service to encryptid Docker image MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The encryptid server imports ../../server/notification-service but the Dockerfile only copied src/encryptid — causing the container to crash-loop with "Cannot find module" on startup. Co-Authored-By: Claude Opus 4.6 --- Dockerfile.encryptid | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile.encryptid b/Dockerfile.encryptid index f3d5036..1191f86 100644 --- a/Dockerfile.encryptid +++ b/Dockerfile.encryptid @@ -22,6 +22,7 @@ RUN bun install --frozen-lockfile || bun install # Copy source COPY src/encryptid ./src/encryptid COPY shared/local-first ./shared/local-first +COPY server/notification-service.ts ./server/notification-service.ts COPY public ./public COPY tsconfig.json ./ @@ -37,6 +38,7 @@ WORKDIR /app 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/server/notification-service.ts ./server/notification-service.ts COPY --from=builder /app/public ./public COPY --from=builder /app/package.json ./