Commit ef21397f authored by Timothy J. Baek's avatar Timothy J. Baek
Browse files

chore: dockerfile

parent ebcc5be1
...@@ -95,8 +95,8 @@ RUN chown -R $UID:$GID /app $HOME ...@@ -95,8 +95,8 @@ RUN chown -R $UID:$GID /app $HOME
RUN if [ "$USE_OLLAMA" = "true" ]; then \ RUN if [ "$USE_OLLAMA" = "true" ]; then \
apt-get update && \ apt-get update && \
# Install pandoc and netcat # Install pandoc, netcat and gcc
apt-get install -y --no-install-recommends pandoc netcat-openbsd curl && \ apt-get install -y --no-install-recommends pandoc gcc netcat-openbsd curl && \
# for RAG OCR # for RAG OCR
apt-get install -y --no-install-recommends ffmpeg libsm6 libxext6 && \ apt-get install -y --no-install-recommends ffmpeg libsm6 libxext6 && \
# install helper tools # install helper tools
...@@ -107,8 +107,8 @@ RUN if [ "$USE_OLLAMA" = "true" ]; then \ ...@@ -107,8 +107,8 @@ RUN if [ "$USE_OLLAMA" = "true" ]; then \
rm -rf /var/lib/apt/lists/*; \ rm -rf /var/lib/apt/lists/*; \
else \ else \
apt-get update && \ apt-get update && \
# Install pandoc and netcat # Install pandoc, netcat and gcc
apt-get install -y --no-install-recommends pandoc netcat-openbsd curl jq && \ apt-get install -y --no-install-recommends pandoc gcc netcat-openbsd curl jq && \
# for RAG OCR # for RAG OCR
apt-get install -y --no-install-recommends ffmpeg libsm6 libxext6 && \ apt-get install -y --no-install-recommends ffmpeg libsm6 libxext6 && \
# cleanup # cleanup
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment