Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@

FROM python:3.11-slim

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
Expand All @@ -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"]
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,3 +55,5 @@ __Contributors:__
- Vincent Harkins (@vharkins1)
- Marc Vergés (@marcvergees)
- Jan Sans

.
1 change: 1 addition & 0 deletions src/main.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import os
from typing import Union
# from backend import Fill
from commonforms import prepare_form
from pypdf import PdfReader
Expand Down