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