From c59a50742660fd3d7ef2e9eee878eed36ead8895 Mon Sep 17 00:00:00 2001 From: Nathan Weinberg Date: Thu, 5 Jun 2025 14:36:06 -0400 Subject: [PATCH] chore: bump 'ramalama-stack' version to 0.2.0 Signed-off-by: Nathan Weinberg --- container-images/llama-stack/Containerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/container-images/llama-stack/Containerfile b/container-images/llama-stack/Containerfile index 9f74c47ae..90b12e5a9 100644 --- a/container-images/llama-stack/Containerfile +++ b/container-images/llama-stack/Containerfile @@ -2,15 +2,15 @@ FROM registry.fedoraproject.org/fedora:42 # hack that should be removed when the following bug is addressed # https://github.com/containers/ramalama-stack/issues/53 -RUN curl --create-dirs --output ~/.llama/providers.d/remote/inference/ramalama.yaml https://raw.githubusercontent.com/containers/ramalama-stack/refs/tags/v0.1.5/src/ramalama_stack/providers.d/remote/inference/ramalama.yaml && \ - curl --create-dirs --output /etc/ramalama/ramalama-run.yaml https://raw.githubusercontent.com/containers/ramalama-stack/refs/tags/v0.1.5/src/ramalama_stack/ramalama-run.yaml +RUN curl --create-dirs --output ~/.llama/providers.d/remote/inference/ramalama.yaml https://raw.githubusercontent.com/containers/ramalama-stack/refs/tags/v0.2.0/src/ramalama_stack/providers.d/remote/inference/ramalama.yaml && \ + curl --create-dirs --output /etc/ramalama/ramalama-run.yaml https://raw.githubusercontent.com/containers/ramalama-stack/refs/tags/v0.2.0/src/ramalama_stack/ramalama-run.yaml RUN dnf -y update && \ dnf -y install uv cmake gcc gcc-c++ python3-devel pkg-config sentencepiece-devel && \ dnf -y clean all RUN uv venv && \ - uv pip install ramalama-stack>=1.5.0 + uv pip install ramalama-stack==0.2.0 COPY --chmod=755 llama-stack/entrypoint.sh /usr/bin/entrypoint.sh