Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
E-motionAssistant
/
Space4
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
Space4
/
Dockerfile
Raemih
Create Dockerfile
47ba926
verified
about 17 hours ago
raw
Copy download link
history
blame
contribute
delete
Safe
189 Bytes
FROM
python:
3.11
-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"
]