Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
Duplicated from
Hansimov/hf-llm-api
radinhas
/
hf-llm-api
like
9
Running
App
Files
Files
Community
b1de8a0
hf-llm-api
/
Dockerfile
Hansimov
:gem: [Feature] Enable Docker deployment, and add requirements
5a836c3
11 months ago
raw
Copy download link
history
blame
Safe
163 Bytes
FROM
python:
3.11
-slim
WORKDIR
$HOME
/app
COPY
requirements.txt .
RUN
pip install -r requirements.txt
VOLUME
/data
EXPOSE
23333
CMD
[
"python"
,
"-m"
,
"apis.chat_api"
]