CoolFace
Apppublic

m-rishabh/iris-api-sagemaker

sourceHugging Faceupdated 8mo agoView on Hugging Face
0likes
Dockerfile12 linesDownload Raw Back to root
1 2FROM python:3.93 4WORKDIR /code5 6COPY ./requirements.txt /code/requirements.txt7RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt8 9COPY . .10 11CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]12