b50126675a
AgentConnect apparently requires the userinfo endpoint to return a signed JWT.
12 lines
205 B
Docker
12 lines
205 B
Docker
FROM python:3.11
|
|
|
|
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"]
|