Mercurial > hg > orthanc-tests
view NewTests/Authorization/Dockerfile @ 617:6ba2ff41ea52
fxi
author | Alain Mazy <am@osimis.io> |
---|---|
date | Mon, 05 Feb 2024 14:24:36 +0100 |
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"]