feat: Add receipt parsing functionality with image and PDF support, including Tesseract OCR integration

This commit is contained in:
Nils-Johan Gynther
2026-04-30 20:00:25 +02:00
parent a8ef23c77b
commit a5f00cee9e
11 changed files with 415 additions and 97 deletions
+6
View File
@@ -19,6 +19,12 @@ FROM node:22-alpine AS runner
WORKDIR /app
ENV NODE_ENV=production
# Tesseract OCR systempaket (krävs av tesseract.js)
RUN apk add --no-cache \
tesseract-ocr \
tesseract-ocr-data-swe \
tesseract-ocr-data-eng
COPY --from=builder /app/package.json ./package.json
COPY --from=builder /app/node_modules ./node_modules
COPY --from=builder /app/dist ./dist