Files
oidc2fer/docker/oidc-test-client/Dockerfile
T
Jonathan Perret 14f9d42889 ⬆️ (oidc-test-client) create Helm chart for test client
This helps running tests with the app running in a
Kubernetes cluster.
2026-03-20 15:32:08 +01:00

12 lines
219 B
Docker

FROM python:3.14.3-slim-trixie
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"]