FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
llama-cpp-python/Dockerfile at main · Niek/llama-cpp-python · GitHub
Niek
/
llama-cpp-python
Public
forked from
abetlen/llama-cpp-python
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
llama-cpp-python
/
Dockerfile
Copy path
More file actions
More file actions
Latest commit
History
History
History
10 lines (7 loc) · 280 Bytes
Breadcrumbs
llama-cpp-python
/
Dockerfile
Copy path
File metadata and controls
10 lines (7 loc) · 280 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
FROM
python:3-bullseye
#
We need to set the host to 0.0.0.0 to allow outside access
ENV
HOST 0.0.0.0
#
Install the package
RUN
apt update && apt install -y libopenblas-dev && LLAMA_OPENBLAS=1 pip install llama-cpp-python[server]
#
Run the server
CMD
python3 -m llama_cpp.server
Back
|
FazBrowse Home
|
New Git URL