Skip to content

Commit

Permalink
fix versions
Browse files Browse the repository at this point in the history
  • Loading branch information
luiztauffer committed Oct 12, 2023
1 parent ebed4d4 commit 0ca575e
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 5 deletions.
1 change: 1 addition & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
frontend/node_modules
2 changes: 1 addition & 1 deletion docker-compose.dev.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: "3.4"

services:
qdrant:
image: qdrant/qdrant
image: qdrant/qdrant:v1.6.0
container_name: qdrant
ports:
- "6333:6333"
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: "3.4"

services:
qdrant:
image: qdrant/qdrant
image: qdrant/qdrant:v1.6.0
container_name: qdrant
ports:
- "6333:6333"
Expand Down
2 changes: 1 addition & 1 deletion frontend/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ WORKDIR /app

COPY . .
RUN npm install
RUN npm run build
# RUN npm run build

EXPOSE 5173

Expand Down
4 changes: 2 additions & 2 deletions rest/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ fastapi==0.103.1
pydantic==1.10.12
uvicorn==0.23.2
openai==0.28.0
qdrant-client==1.5.4
qdrant-client==1.6.0
tiktoken==0.5.1
langchain==0.0.218 # TODO - update this
# langchain==0.0.300
dandi==0.56.1
dandi==0.56.2
dandischema==0.8.4
gunicorn

0 comments on commit 0ca575e

Please sign in to comment.