Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
ka1kuk/litellm
kenken999
/
litellmlope
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
55cbdb6
litellmlope
/
Dockerfile
ka1kuk
Update Dockerfile
55cbdb6
verified
over 1 year ago
raw
Copy download link
history
blame
Safe
130 Bytes
FROM
python:
3.11
-slim
WORKDIR
$HOME
/app
COPY
. .
RUN
pip install -r requirements.txt
VOLUME
/data
CMD
[
"uvicorn"
,
"main:app"
]