Fix syntax error in conditional for Ollama installation

This commit is contained in:
Everett Wilber 2025-08-27 18:35:00 -04:00 committed by GitHub
parent 24767bb0fa
commit b2d1aa3c6e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -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 && \