Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
ishaan812
/
prodrec
like
1
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
prodrec
/
Dockerfile
Ishaan Shah
config changes
0b341dc
9 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
175 Bytes
FROM
python:
3.11
-slim
WORKDIR
/app
COPY
. .
RUN
pip install --no-cache-dir -r requirements.txt
CMD
[
"uvicorn"
,
"main:app"
,
"--host"
,
"0.0.0.0"
,
"--port"
,
"8000"
]