view NewTests/Authorization/Dockerfile @ 752:7dce2aa22bbb find-refactoring

removed test_attachment_range for integration with default
author Sebastien Jodogne <s.jodogne@gmail.com>
date Mon, 16 Dec 2024 11:06:05 +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"]