From 5fac39afed795d08dd3fc434c73e76d715576613 Mon Sep 17 00:00:00 2001 From: sabaimran Date: Wed, 22 Nov 2023 20:35:11 -0800 Subject: [PATCH] Fix PYTHONPATH reference in order to maintain appropriate package imports --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 4512e884..9882a236 100644 --- a/Dockerfile +++ b/Dockerfile @@ -17,7 +17,7 @@ RUN sed -i 's/dynamic = \["version"\]/version = "0.0.0"/' pyproject.toml && \ COPY . . # Set the PYTHONPATH environment variable in order for it to find the Django app. -ENV PYTHONPATH=/app/src/khoj:$PYTHONPATH +ENV PYTHONPATH=/app/src:$PYTHONPATH # Run the Application # There are more arguments required for the application to run,