Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
TRaw
/
1111
like
0
No application file
App
Files
Files
Community
1
6c3652b
1111
/
dkr
TRaw
Create dkr
c1a75cc
over 1 year ago
raw
Copy download link
history
blame
Safe
228 Bytes
FROM
python:
3.9
WORKDIR
/code
COPY
./requirements.txt /code/requirements.txt
RUN
pip install --no-cache-dir --upgrade -r /code/requirements.txt
COPY
. .
CMD
[
"uvicorn"
,
"app.main:app"
,
"--host"
,
"0.0.0.0"
,
"--port"
,
"7860"
]