Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
tosanoob
/
test_deployment
like
0
Paused
App
Files
Files
Community
e2dbd09
test_deployment
/
Dockerfile
tosanoob
Update Dockerfile
620a03c
verified
6 months ago
raw
Copy download link
history
blame
Safe
179 Bytes
FROM
python:
3.9
WORKDIR
/code
COPY
* /code
RUN
pip install --no-cache-dir --upgrade -r /code/requirements.txt
CMD
[
"uvicorn"
,
"app:app"
,
"--host"
,
"0.0.0.0"
,
"--port"
,
"7860"
]