We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a523095 commit 168921aCopy full SHA for 168921a
test.containerfile
@@ -3,7 +3,13 @@ FROM quay.io/opendatahub/llama-stack:rhoai-v2.25-latest
3
4
# Install missing dependencies
5
USER root
6
-RUN pip install faiss-cpu==1.11.0
+RUN pip install faiss-cpu==1.11.0 && \
7
+ mkdir -p /opt/app-root/.llama/distributions/ollama && \
8
+ chown -R 1001:0 /opt/app-root/.llama && \
9
+ chmod -R g+rwx /opt/app-root/.llama
10
+
11
+# Set working directory
12
+WORKDIR /opt/app-root
13
14
# Switch back to the original user
15
USER 1001
0 commit comments