view NewTests/Authorization/Dockerfile @ 787:d753dc94de2c

support of 1.2.840.10008.1.2.1.99 in now enabled in the mainline
author Sebastien Jodogne <s.jodogne@gmail.com>
date Mon, 24 Feb 2025 08:03:48 +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"]