diff --git a/DockerFileFolder/Dockerfile b/DockerFileFolder/Dockerfile index f58841a..aae3826 100644 --- a/DockerFileFolder/Dockerfile +++ b/DockerFileFolder/Dockerfile @@ -42,6 +42,9 @@ RUN pip install --no-cache-dir -U pip setuptools wheel # Use find to locate requirements.txt and install dependencies RUN find /app -name requirements.txt -exec pip install --no-cache-dir -r {} \; +# Install the application in editable mode +RUN pip install --no-cache-dir -e . + # Set working directory for the application WORKDIR /app/api