Skip to content
This repository has been archived by the owner on Jul 12, 2024. It is now read-only.

Commit

Permalink
fix: docker file, remove the llama index module
Browse files Browse the repository at this point in the history
  • Loading branch information
loyal812 committed Mar 28, 2024
1 parent 87df1fa commit db9bd00
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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.
Expand Down

0 comments on commit db9bd00

Please sign in to comment.