Files
oidc2fer/docker/oidc-test-client/Dockerfile
Jonathan Perret 9994eb84b0 ⬆️ (python) upgrade to Python 3.14.3
Bumping base image to avoid reported vulnerabilities.
2026-02-27 19:04:37 +01:00

12 lines
205 B
Docker

FROM python:3.14
COPY . /app
WORKDIR /app
RUN pip install -r requirements.txt
HEALTHCHECK --start-period=30s --start-interval=1s CMD curl --fail http://localhost:5000/healthz
CMD ["python", "app.py"]