From 4822895ca49674139bca21398f2df5a5415928b6 Mon Sep 17 00:00:00 2001 From: Jeff Emmett Date: Tue, 3 Mar 2026 19:45:13 -0800 Subject: [PATCH] fix: copy src/ directory into Docker image for notification module The notification routes import from src/encryptid/db which was missing from the production container, causing a crash loop on startup. Co-Authored-By: Claude Opus 4.6 --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index fa8946d..f37b4ee 100644 --- a/Dockerfile +++ b/Dockerfile @@ -39,6 +39,7 @@ COPY --from=build /app/server ./server COPY --from=build /app/lib ./lib COPY --from=build /app/shared ./shared COPY --from=build /app/modules ./modules +COPY --from=build /app/src ./src COPY --from=build /app/package.json . COPY --from=build /encryptid-sdk /encryptid-sdk