You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
By reorganising the Dockerfiles I broke the install for the simple Dockerfiles, as they copy the repo from the current dir into the image, but they're now located in a subdir. Docker builds can't copy files from a parent directory AFAIK.
Do we want to either:
pip install the latest llama-cpp-python package in this Dockerfiles so that they are the most minimal install
or:
Install the latest commit of llama-cpp-python?
If the second option is chosen then a better way is to git clone https://github.com/abetlen/llama-cpp-python.git as part of the docker build, as then there's no dependency on where the Dockerfile is located.
The text was updated successfully, but these errors were encountered:
By reorganising the Dockerfiles I broke the install for the simple Dockerfiles, as they copy the repo from the current dir into the image, but they're now located in a subdir. Docker builds can't copy files from a parent directory AFAIK.
Do we want to either:
pip install
the latestllama-cpp-python
package in this Dockerfiles so that they are the most minimal installor:
Install the latest commit of
llama-cpp-python
?If the second option is chosen then a better way is to
git clone https://github.com/abetlen/llama-cpp-python.git
as part of thedocker build
, as then there's no dependency on where theDockerfile
is located.The text was updated successfully, but these errors were encountered: