Add Quantum resource evidence dashboard

This commit is contained in:
2026-04-20 17:47:00 -03:00
parent e738f08e91
commit fd4597a309
7 changed files with 410 additions and 12 deletions
+15
View File
@@ -0,0 +1,15 @@
FROM python:3.12-alpine
ENV PYTHONDONTWRITEBYTECODE=1
ENV PYTHONUNBUFFERED=1
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY app.py .
EXPOSE 8080
CMD ["gunicorn", "--bind", "0.0.0.0:8080", "app:app"]