Spaces:
Runtime error
Runtime error
| # Base image | |
| FROM python:3.9 | |
| # Set working directory | |
| WORKDIR /app | |
| # Copy files | |
| COPY . /app | |
| # Expose API port | |
| EXPOSE 8000 | |
| # Run API | |
| CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8000"] | |