Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
thesupremeguy
/
hackathon
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
hackathon
/
Dockerfile
suhaas-code
updated all files
d6c1540
about 1 month ago
raw
Copy download link
history
blame
contribute
delete
Safe
169 Bytes
FROM
python:
3.11
-slim
WORKDIR
/app
COPY
. .
RUN
pip install --no-cache-dir -r requirements.txt
CMD
[
"uvicorn"
,
"api.main:app"
,
"--host"
,
"0.0.0.0"
,
"--port"
,
"7860"
]