Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
tosanoob
/
test_deployment
like
0
Paused
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
0f34283
test_deployment
/
Dockerfile
tosanoob
Update Dockerfile
0f34283
verified
about 1 year ago
raw
Copy download link
history
blame
Safe
180 Bytes
FROM
python:
3.11
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"
]