diff --git a/container-images/cuda/Containerfile b/container-images/cuda/Containerfile index f7ffe485..7e47bd32 100644 --- a/container-images/cuda/Containerfile +++ b/container-images/cuda/Containerfile @@ -14,7 +14,7 @@ RUN dnf install -y git cmake gcc-c++ && \ # Set the temporary installation directory ENV INSTALL_PREFIX=/tmp/install -COPY ../scripts /scripts +COPY ../../scripts /scripts RUN chmod +x /scripts/*.sh && \ /scripts/build_llama_and_whisper.sh "$LLAMA_CPP_SHA" "$WHISPER_CPP_SHA" \ "$INSTALL_PREFIX" "-DGGML_CUDA=1" diff --git a/container-images/ramalama/Containerfile b/container-images/ramalama/Containerfile index 3425679d..149bc828 100644 --- a/container-images/ramalama/Containerfile +++ b/container-images/ramalama/Containerfile @@ -39,7 +39,7 @@ RUN dnf install -y glslang && \ dnf clean all && \ rm -rf /var/cache/*dnf* -COPY ../scripts /scripts +COPY ../../scripts /scripts RUN chmod +x /scripts/*.sh && \ /scripts/build_llama_and_whisper.sh "$LLAMA_CPP_SHA" "$WHISPER_CPP_SHA" \ "/usr" "-DGGML_KOMPUTE=1" diff --git a/container-images/rocm/Containerfile b/container-images/rocm/Containerfile index f0e9def8..eda8e55d 100644 --- a/container-images/rocm/Containerfile +++ b/container-images/rocm/Containerfile @@ -16,7 +16,7 @@ RUN curl --retry 8 --retry-all-errors -o \ cat /etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-Official RUN rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-Official -COPY ../scripts /scripts +COPY ../../scripts /scripts RUN dnf install -y rocm-dev hipblas-devel rocblas-devel && \ dnf clean all && \ chmod +x /scripts/*.sh && \ diff --git a/container-images/vulkan/Containerfile b/container-images/vulkan/Containerfile index 5d9eaacc..d437040e 100644 --- a/container-images/vulkan/Containerfile +++ b/container-images/vulkan/Containerfile @@ -1,6 +1,6 @@ FROM quay.io/ramalama/ramalama:latest -COPY ../scripts /scripts +COPY ../../scripts /scripts RUN chmod +x /scripts/*.sh && \ /scripts/build_llama_and_whisper.sh "$LLAMA_CPP_SHA" "$WHISPER_CPP_SHA" \ "/usr" "-DGGML_VULKAN=1"