view NewTests/Authorization/Dockerfile @ 782:1d5f89f6b700 attach-custom-data

fix
author Alain Mazy <am@orthanc.team>
date Tue, 04 Feb 2025 17:59:45 +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"]