From ef21397f0dcedc42bbb6909ad8facbd19a677697 Mon Sep 17 00:00:00 2001 From: "Timothy J. Baek" Date: Wed, 10 Jul 2024 14:20:02 -0700 Subject: [PATCH] chore: dockerfile --- Dockerfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 2bd05e6ba..ac9ca72f4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -95,8 +95,8 @@ RUN chown -R $UID:$GID /app $HOME RUN if [ "$USE_OLLAMA" = "true" ]; then \ apt-get update && \ - # Install pandoc and netcat - apt-get install -y --no-install-recommends pandoc netcat-openbsd curl && \ + # Install pandoc, netcat and gcc + apt-get install -y --no-install-recommends pandoc gcc netcat-openbsd curl && \ # for RAG OCR apt-get install -y --no-install-recommends ffmpeg libsm6 libxext6 && \ # install helper tools @@ -107,8 +107,8 @@ RUN if [ "$USE_OLLAMA" = "true" ]; then \ rm -rf /var/lib/apt/lists/*; \ else \ apt-get update && \ - # Install pandoc and netcat - apt-get install -y --no-install-recommends pandoc netcat-openbsd curl jq && \ + # Install pandoc, netcat and gcc + apt-get install -y --no-install-recommends pandoc gcc netcat-openbsd curl jq && \ # for RAG OCR apt-get install -y --no-install-recommends ffmpeg libsm6 libxext6 && \ # cleanup