Initial Validation Suite V2 report engine

This commit is contained in:
Validation Suite 2026-07-10 19:13:07 +00:00
commit 2b5c765e41
79 changed files with 2072 additions and 0 deletions

8
Dockerfile Normal file
View file

@ -0,0 +1,8 @@
FROM python:3.12-slim
WORKDIR /app
ENV PYTHONDONTWRITEBYTECODE=1 PYTHONUNBUFFERED=1
RUN apt-get update && apt-get install -y --no-install-recommends gcc libpq-dev && rm -rf /var/lib/apt/lists/*
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY app/ .
CMD ["gunicorn","--bind","0.0.0.0:5000","--workers","2","--threads","4","app:app"]