From 4dc16a6a110845e543dcfd66a4c8d281d2eee919 Mon Sep 17 00:00:00 2001 From: qngu0461 Date: Tue, 17 Mar 2026 18:22:02 +1100 Subject: [PATCH 1/3] test commit --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 42862e3..b516e22 100644 --- a/README.md +++ b/README.md @@ -55,3 +55,5 @@ __Contributors:__ - Vincent Harkins (@vharkins1) - Marc Vergés (@marcvergees) - Jan Sans + +. \ No newline at end of file From 88d0fe77f291ba009821a5c52a48a835ba6210e0 Mon Sep 17 00:00:00 2001 From: qngu0461 Date: Wed, 18 Mar 2026 01:12:01 +1100 Subject: [PATCH 2/3] Fix [BUG]: Docker container is missing system libraries required for OpenCV --- Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 833fcc3..851fcef 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,3 @@ - FROM python:3.11-slim WORKDIR /app @@ -6,6 +5,8 @@ WORKDIR /app # Install system dependencies RUN apt-get update && apt-get install -y \ curl \ + libgl1 \ + libglib2.0-0 \ && rm -rf /var/lib/apt/lists/* # Copy and install Python dependencies @@ -19,4 +20,4 @@ COPY . . ENV PYTHONPATH=/app/src # Keep container running for interactive use -CMD ["tail", "-f", "/dev/null"] +CMD ["tail", "-f", "/dev/null"] \ No newline at end of file From dc1896baa51329a1011eb471e94b57c5f933fb93 Mon Sep 17 00:00:00 2001 From: qngu0461 Date: Wed, 18 Mar 2026 01:53:51 +1100 Subject: [PATCH 3/3] Fix [BUG]: Make exec fails because Union is not imported in src/main.py --- src/main.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main.py b/src/main.py index 5bb632b..a17ecb1 100644 --- a/src/main.py +++ b/src/main.py @@ -1,4 +1,5 @@ import os +from typing import Union # from backend import Fill from commonforms import prepare_form from pypdf import PdfReader