Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
anoushhka
/
backend
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
backend
/
Dockerfile
Sai Anoushka
Add application file
0f6ecfb
about 1 month ago
raw
Copy download link
history
blame
contribute
delete
Safe
185 Bytes
FROM
python:
3.11
WORKDIR
/code
COPY
requirements.txt .
RUN
pip install --no-cache-dir -r requirements.txt
COPY
. .
CMD
[
"uvicorn"
,
"app:app"
,
"--host"
,
"0.0.0.0"
,
"--port"
,
"7860"
]