CoolFace
Apppublic

fran1215/fastapi-test

sourceHugging Faceupdated 3y agoView on Hugging Face
0likes
Dockerfile11 linesDownload Raw Back to root
1FROM python:3.112 3COPY requirements.txt /gateway/4WORKDIR /gateway5RUN pip install --no-cache-dir -r requirements.txt6 7COPY . /gateway/8 9EXPOSE 800010ENTRYPOINT ["uvicorn", "app:app", "--host=0.0.0.0", "--port=8000"]11