Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
Hansimov
/
hf-llm-api
like
20
Running
App
Files
Files
Community
8
4ba2ca6
hf-llm-api
/
Dockerfile
Hansimov
:boom: [Fix] Module apis not found
937bc45
11 months ago
raw
Copy download link
history
blame
Safe
148 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"
]