Update Dockerfile with swig system package required by PyMuPDF

This commit is contained in:
Debanjum Singh Solanky 2024-01-17 19:24:27 +05:30
parent 4d30f7d1d9
commit 08012c71b1

View file

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