Updated Dockerfile and Requirements file
Browse files- Dockerfile +2 -2
- requirements.txt +10 -7
Dockerfile
CHANGED
@@ -8,8 +8,8 @@ ENV HOME=/home/user \
|
|
8 |
WORKDIR $HOME/app
|
9 |
|
10 |
COPY --chown=user requirements.txt .
|
|
|
11 |
RUN pip install --user -r requirements.txt
|
12 |
-
|
13 |
COPY --chown=user . .
|
14 |
-
|
15 |
CMD ["chainlit", "run", "app.py", "--port", "7860"]
|
|
|
8 |
WORKDIR $HOME/app
|
9 |
|
10 |
COPY --chown=user requirements.txt .
|
11 |
+
RUN pip install --user --upgrade pip
|
12 |
RUN pip install --user -r requirements.txt
|
|
|
13 |
COPY --chown=user . .
|
14 |
+
COPY --chown=user . .
|
15 |
CMD ["chainlit", "run", "app.py", "--port", "7860"]
|
requirements.txt
CHANGED
@@ -1,9 +1,12 @@
|
|
1 |
-
chainlit
|
2 |
-
langchain
|
3 |
-
langchain-openai
|
4 |
-
langchain-community
|
5 |
-
qdrant-client
|
6 |
-
pymupdf
|
7 |
fastapi
|
8 |
uvicorn[standard]
|
9 |
-
python-dotenv
|
|
|
|
|
|
|
|
1 |
+
chainlit==0.7.700
|
2 |
+
langchain==0.3.0
|
3 |
+
langchain-openai==0.2.0
|
4 |
+
langchain-community==0.3.0
|
5 |
+
qdrant-client==1.11.2
|
6 |
+
pymupdf==1.24.10
|
7 |
fastapi
|
8 |
uvicorn[standard]
|
9 |
+
python-dotenv==1.0.0
|
10 |
+
marshmallow==3.19.0
|
11 |
+
jsonpatch==1.32
|
12 |
+
jiter==0.4.2
|