Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
FROM python:3.11-buster as builder-image
FROM python:3.11-bookworm as builder-image

RUN apt-get update

COPY install/requirements_py3.11.txt .
RUN pip3 install -U pip
RUN pip3 install --no-cache-dir -r requirements_py3.11.txt -i https://pypi.tuna.tsinghua.edu.cn/simple

FROM python:3.11-slim-buster
FROM python:3.11-slim-bookworm

COPY --from=builder-image /usr/local/bin /usr/local/bin
COPY --from=builder-image /usr/local/lib/python3.11/site-packages /usr/local/lib/python3.11/site-packages
Expand Down
5 changes: 3 additions & 2 deletions install/requirements_py3.11.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
grpcio==1.53.2
grpcio-tools==1.53.0
grpcio==1.66.2
grpcio-tools==1.66.2
qdrant-client
pinecone
weaviate-client
Expand All @@ -18,6 +18,7 @@ streamlit>=1.23.0
streamlit_extras
tornado>=6.0
tqdm
ujson
s3fs
psutil
polars
Expand Down