Spaces:
Runtime error
Runtime error
| FROM python:3.9 | |
| # μμ λλ ν 리 μ€μ | |
| WORKDIR /app | |
| # νμ ν¨ν€μ§ μ€μΉ | |
| COPY requirements.txt . | |
| RUN pip install --no-cache-dir -r requirements.txt | |
| # FastAPI μ ν리μΌμ΄μ λ³΅μ¬ | |
| COPY app.py . | |
| # FastAPI μ€ν | |
| CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"] | |