Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Website
Tasks
HuggingChat
Collections
Languages
Organizations
Community
Blog
Posts
Daily Papers
Learn
Discord
Forum
GitHub
Solutions
Team & Enterprise
Hugging Face PRO
Enterprise Support
Inference Providers
Inference Endpoints
Storage Buckets
Log In
Sign Up
Spaces:
Duplicated from
AIMaster7/HFLLMAPI2
AIMaster7
/
HFLLMAPI3
like
0
Paused
App
Files
Files
Fetching metadata from the HF Docker repository...
f3b1386
HFLLMAPI3
/
Dockerfile
Hansimov
:gem: [Feature] Enable Docker deployment, and add requirements
5a836c3
over 2 years ago
raw
Copy download link
history
blame
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"
]