Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
truegleai
/
o87LLM-VM
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
o87LLM-VM
/
Dockerfile
truegleai
Deploy FastAPI proxy for LLM
36ffa96
3 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
186 Bytes
FROM
python:
3.10
-slim
WORKDIR
/app
COPY
requirements.txt .
RUN
pip install --no-cache-dir -r requirements.txt
COPY
. .
CMD
[
"uvicorn"
,
"main:app"
,
"--host"
,
"0.0.0.0"
,
"--port"
,
"7860"
]