Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
jboat
/
fastapi_app
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
3558c0f
fastapi_app
/
requirements.txt
jboat
Create requirements.txt
9c9a7e1
verified
over 1 year ago
raw
Copy download link
history
blame
Safe
169 Bytes
FROM python:3.10.9
COPY . .
WORKDIR /
RUN pip install --no-cache-dir --upgrade -r /requirements.txt
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]