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