aniudupa commited on
Commit
ed43b51
·
verified ·
1 Parent(s): 4b62f0a

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -0
Dockerfile CHANGED
@@ -11,6 +11,9 @@ WORKDIR /app
11
 
12
  COPY --chown=user ./requirements.txt requirements.txt
13
  RUN pip install --no-cache-dir --upgrade -r requirements.txt
 
 
 
14
  RUN pip install --no-cache-dir faiss-gpu
15
 
16
 
 
11
 
12
  COPY --chown=user ./requirements.txt requirements.txt
13
  RUN pip install --no-cache-dir --upgrade -r requirements.txt
14
+ RUN pip install --upgrade langchain pydantic transformers
15
+
16
+ # Step 6: Install faiss-gpu separately (if needed)
17
  RUN pip install --no-cache-dir faiss-gpu
18
 
19