comparison NewTests/Authorization/Dockerfile @ 577:0649a19df194

new tests for auth-service
author Alain Mazy <am@osimis.io>
date Fri, 08 Sep 2023 12:03:50 +0200
parents
children
comparison
equal deleted inserted replaced
576:80ba6f1d521c 577:0649a19df194
1 FROM python:3.11
2
3 RUN pip install uvicorn
4 RUN pip install fastapi==0.103.0
5
6 RUN mkdir /auth-service
7 COPY *.py /auth-service
8
9 WORKDIR /auth-service
10 ENTRYPOINT [ "uvicorn", "auth_service:app", "--host", "0.0.0.0", "--port", "8020"]
11