view NewTests/Authorization/Dockerfile @ 834:42bd85717370

indexer: TakeOwnership
author Alain Mazy <am@orthanc.team>
date Mon, 16 Jun 2025 13:03:23 +0200
parents 0649a19df194
children
line wrap: on
line source

FROM python:3.11

RUN pip install uvicorn
RUN pip install fastapi==0.103.0

RUN mkdir /auth-service
COPY *.py /auth-service

WORKDIR /auth-service
ENTRYPOINT [ "uvicorn", "auth_service:app", "--host", "0.0.0.0", "--port", "8020"]