From 08012c71b1dc00c483d6af911cd9dfb72b93b432 Mon Sep 17 00:00:00 2001 From: Debanjum Singh Solanky Date: Wed, 17 Jan 2024 19:24:27 +0530 Subject: [PATCH] Update Dockerfile with swig system package required by PyMuPDF --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index e6a6fb4a..961906b8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ FROM ubuntu:jammy LABEL org.opencontainers.image.source https://github.com/khoj-ai/khoj # Install System Dependencies -RUN apt update -y && apt -y install python3-pip git +RUN apt update -y && apt -y install python3-pip git swig WORKDIR /app