Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Somalitts
/
caash_api
like
0
No application file
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
ea865a8
caash_api
/
Dockerfile.unknown
Somalitts
Upload Dockerfile.unknown
27f8a2f
verified
9 months ago
raw
Copy download link
history
blame
Safe
185 Bytes
FROM
python:
3.10
WORKDIR
/app
COPY
requirements.txt .
RUN
pip install --no-cache-dir -r requirements.txt
COPY
. .
CMD
[
"uvicorn"
,
"app:app"
,
"--host"
,
"0.0.0.0"
,
"--port"
,
"7860"
]