diff --git a/src/Dockerfile b/src/Dockerfile index 1de1d34..44db9d0 100644 --- a/src/Dockerfile +++ b/src/Dockerfile @@ -24,7 +24,7 @@ USER root # Copy the requirements.txt file and install the Python dependencies. COPY --chown=user:user ./requirements.txt ./ RUN pip install --no-cache-dir -r requirements.txt -RUN pip install --upgrade llama-index +# RUN pip install --upgrade llama-index # Copy the project files into the container. COPY --chown=user:user ./$PROJECT /home/user/$PROJECT @@ -45,7 +45,7 @@ FROM base as test # Copy the requirements.txt file and install the Python dependencies. COPY --chown=user:user ./requirements.txt ./ RUN pip install --no-cache-dir -r requirements.txt -RUN pip install --upgrade llama-index +# RUN pip install --upgrade llama-index USER root # Copy the project files into the container.