5465 Total CVEs
26 Years
GitHub
README.md
Rendering markdown...
POC / Dockerfile
FROM python:3.9-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY app.py .
EXPOSE 9669
CMD ["python", "app.py"]