Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
oflakne26
/
New-Place
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
2d24168
New-Place
/
Dockerfile
oflakne26
Update Dockerfile
c552a9a
verified
9 months ago
raw
Copy download link
history
blame
Safe
181 Bytes
FROM
python:
3.9
WORKDIR
/code
COPY
./ /code
RUN
pip install --no-cache-dir --upgrade -r /code/requirements.txt
CMD
[
"uvicorn"
,
"main:app"
,
"--host"
,
"0.0.0.0"
,
"--port"
,
"7860"
]