diff --git a/Dockerfile b/Dockerfile index 4d1cb525..760d10b2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,9 +6,10 @@ LABEL org.opencontainers.image.source https://github.com/khoj-ai/khoj RUN apt update -y && \ apt -y install python3-pip python3-pyqt6 git -# Install Python Dependencies -RUN pip install --upgrade pip && \ - pip install git+https://github.com/khoj-ai/khoj.git +# Install Application +COPY . . +RUN sed -i 's/dynamic = \["version"\]/version = "0.0.0"/' pyproject.toml && \ + pip install --no-cache-dir . # Run the Application # There are more arguments required for the application to run,