Spaces:
Build error
Build error
| FROM python:3.11.6-alpine3.18 | |
| RUN apt-get update && apt-get install -y curl | |
| USER tonne | |
| WORKDIR /code | |
| RUN pip install fastapi uvicorn | |
| COPY . /code | |
| CMD ["uvicorn", "main:app", "--reload"] | |