Merge branch 'dev'

This commit is contained in:
Jeff Emmett 2026-03-04 11:15:28 -08:00
commit ce52829a27
1 changed files with 2 additions and 0 deletions

View File

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