diff --git a/Dockerfile b/Dockerfile index 649535b..33f6f46 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM nvidia/cuda:12.2.2-runtime-ubuntu22.04 +FROM nvidia/cuda:12.2.2-cudnn8-devel-ubuntu22.04 ENV DEBIAN_FRONTEND=noninteractive diff --git a/Makefile b/Makefile index a39927c..3a8db8f 100644 --- a/Makefile +++ b/Makefile @@ -21,7 +21,7 @@ help: .PHONY: build-push build-push: docker login ghcr.io - docker build --push --platform linux/amd64 --tag ghcr.io/nextcloud/llm2:1.2.4 . + docker build --push --platform linux/amd64 --tag ghcr.io/nextcloud/llm2:1.2.5 . .PHONY: download-models download-models: diff --git a/appinfo/info.xml b/appinfo/info.xml index 4dcfdba..e5bbc9a 100644 --- a/appinfo/info.xml +++ b/appinfo/info.xml @@ -9,7 +9,7 @@ See [the nextcloud admin docs](https://docs.nextcloud.com/server/latest/admin_manual/ai/index.html) for more information. ]]> - 1.2.4 + 1.2.5 MIT Marcel Klehr Alexander Piskun @@ -25,7 +25,7 @@ See [the nextcloud admin docs](https://docs.nextcloud.com/server/latest/admin_ma ghcr.io nextcloud/llm2 - 1.2.4 + 1.2.5 AI_PROVIDERS diff --git a/init.sh b/init.sh index 656c172..d6961e8 100755 --- a/init.sh +++ b/init.sh @@ -1,6 +1,6 @@ #! /bin/bash -PATH="/root/.local/bin/:$PATH" -CMAKE_ARGS="-DLLAMA_CUDA=on" +export PATH="/root/.local/bin/:$PATH" +export CMAKE_ARGS="-DLLAMA_CUDA=on" source $(poetry env info --path)/bin/activate poetry install cd lib