Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
gingdev
/
free-llm
like
0
Sleeping
App
Files
Files
Community
main
free-llm
/
Dockerfile
gingdev
add support for huggingface
ef3aee7
6 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
154 Bytes
FROM
python:latest
COPY
. /app
WORKDIR
/app
RUN
pip install -r requirements.txt
ENTRYPOINT
[
"uvicorn"
]
CMD
[
"app.main:app"
,
"--host"
,
"0.0.0.0"
]