Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
Hansimov/hf-llm-api
radinhas
/
hf-llm-api
like
11
Running
App
Files
Files
Community
7d69da5
hf-llm-api
/
Dockerfile
radinhas
Update Dockerfile
c9875a0
12 months ago
raw
Copy download link
history
blame
Safe
153 Bytes
FROM
python:
3.11
-slim
WORKDIR
$HOME
/app
COPY
. .
RUN
pip install -r requirements.txt
VOLUME
/data
EXPOSE
23333
CMD
[
"python"
,
"-m"
,
"apis.chat_api"
,
"-d"
]