Initial Validation Suite V2 report engine
This commit is contained in:
commit
2b5c765e41
79 changed files with 2072 additions and 0 deletions
8
Dockerfile
Normal file
8
Dockerfile
Normal 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"]
|
||||
Loading…
Add table
Add a link
Reference in a new issue