From 17354aaffd6d2a943a69ecc7824e690280e2bf2c Mon Sep 17 00:00:00 2001 From: Debanjum Singh Solanky Date: Thu, 8 Sep 2022 10:39:11 +0300 Subject: [PATCH] Install pyqt system package in Docker image to get qt dependencies Otherwise app start fails with pyqt package import related errors. See #76 for bug --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index d38a39af..e1cd9321 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ LABEL org.opencontainers.image.source https://github.com/debanjum/khoj # Install System Dependencies RUN apt-get update -y && \ - apt-get -y install libimage-exiftool-perl + apt-get -y install libimage-exiftool-perl python3-pyqt5 # Copy Application to Container COPY . /app