Deploying FastAPI app

Hi,
Is there a way i can deploy fastapi apps here pls?

If you have a Dockerfile you can (or you can try it out with our Buildpacks support).

Note: the official documentation of FastAPI provides a Dockerfile.

FROM python:3.9

WORKDIR /code
COPY ./requirements.txt /code/requirements.txt
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
COPY ./app /code/app

CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "80"]
1 Like