Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
CaffeineCrew
/
Techdocs
like
1
Runtime error
App
Files
Files
Community
1
Fetching metadata from the HF Docker repository...
25c7fe3
Techdocs
/
Dockerfile
Hemanth Sai Garladinne
update docker file (#15)
0514855
over 1 year ago
raw
Copy download link
history
blame
Safe
181 Bytes
FROM
python:
3.10
.
9
COPY
./TechdocsAPI .
WORKDIR
/
RUN
pip install --no-cache-dir --upgrade -r /requirements.txt
CMD
[
"uvicorn"
,
"app:app"
,
"--host"
,
"0.0.0.0"
,
"--port"
,
"7860"
]