Update Dockerfile
Browse files- 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 |
|