Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
ka1kuk
/
LLM-api
like
1
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
LLM-api
/
Dockerfile
ka1kuk
Update Dockerfile
e9fe12b
verified
about 1 year ago
raw
Copy download link
history
blame
contribute
delete
Safe
154 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"
]