Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
bsny/ey-catalyst
EY-Catalyst-RVCE
/
ey-catalyst
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
eccc79e
ey-catalyst
/
Dockerfile
bsny
Update Dockerfile
c41dab3
verified
10 months ago
raw
Copy download link
history
blame
Safe
194 Bytes
FROM
python:
3.10
-slim
WORKDIR
/app
COPY
requirements.txt .
RUN
pip install --no-cache-dir -r requirements.txt
COPY
app.py .
CMD
[
"uvicorn"
,
"app:app"
,
"--host"
,
"0.0.0.0"
,
"--port"
,
"7860"
]