From b2d1aa3c6e4b4ad08e112ef07542b76b1c901a3b Mon Sep 17 00:00:00 2001 From: Everett Wilber <71281043+a1cd@users.noreply.github.com> Date: Wed, 27 Aug 2025 18:35:00 -0400 Subject: [PATCH] Fix syntax error in conditional for Ollama installation --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 0faef51330..12d9174d09 100644 --- a/Dockerfile +++ b/Dockerfile @@ -144,7 +144,7 @@ RUN pip3 install --no-cache-dir uv && \ chown -R $UID:$GID /app/backend/data/ # Install Ollama if requested -RUN if [ [ "$USE_OLLAMA" = "true" ] && [ "$USE_SLIM" != "true" ] ]; then \ +RUN if [ "$USE_OLLAMA" = "true" ] && [ "$USE_SLIM" != "true" ]; then \ date +%s > /tmp/ollama_build_hash && \ echo "Cache broken at timestamp: `cat /tmp/ollama_build_hash`" && \ curl -fsSL https://ollama.com/install.sh | sh && \