Mercurial > hg > orthanc-tests
view NewTests/Authorization/Dockerfile @ 972:d4eacd47d487 default
merged pg-next-1099 -> default
| author | Alain Mazy <am@orthanc.team> |
|---|---|
| date | Fri, 18 Sep 2026 14:47:35 +0200 |
| parents | 54377a1367ca |
| children |
line wrap: on
line source
FROM python:3.14 RUN pip install uvicorn==0.52.4 RUN pip install fastapi==0.141.1 RUN mkdir /auth-service COPY *.py /auth-service WORKDIR /auth-service ENTRYPOINT [ "uvicorn", "auth_service:app", "--host", "0.0.0.0", "--port", "8020"]
