Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
alanchen1115
/
gemiline
like
1
Running
App
Files
Files
Community
709a253
gemiline
/
Dockerfile
alanchen1115
Update Dockerfile
8efacf7
verified
10 months ago
raw
Copy download link
history
blame
Safe
167 Bytes
FROM
python:
3.9
COPY
. .
WORKDIR
/
RUN
pip install --no-cache-dir --upgrade -r /requirements.txt
CMD
[
"uvicorn"
,
"main:app"
,
"--host"
,
"0.0.0.0"
,
"--port"
,
"7860"
]