forked from open-webui/open-webui
feat: include embedding weight to image
This commit is contained in:
parent
162641ee43
commit
0345a80033
1 changed files with 8 additions and 0 deletions
|
@ -28,6 +28,14 @@ WORKDIR /app/backend
|
||||||
|
|
||||||
COPY ./backend/requirements.txt ./requirements.txt
|
COPY ./backend/requirements.txt ./requirements.txt
|
||||||
RUN pip3 install -r requirements.txt
|
RUN pip3 install -r requirements.txt
|
||||||
|
|
||||||
|
RUN MODEL_DIR="/root/.cache/chroma/onnx_models/all-MiniLM-L6-v2" &&\
|
||||||
|
ARCHIVE_NAME="onnx.tar.gz" &&\
|
||||||
|
mkdir -p $MODEL_DIR &&\
|
||||||
|
cd $MODEL_DIR &&\
|
||||||
|
wget -O $ARCHIVE_NAME "https://chroma-onnx-models.s3.amazonaws.com/all-MiniLM-L6-v2/$ARCHIVE_NAME" &&\
|
||||||
|
tar -xzf $ARCHIVE_NAME
|
||||||
|
|
||||||
# RUN python -c "from sentence_transformers import SentenceTransformer; model = SentenceTransformer('all-MiniLM-L6-v2')"
|
# RUN python -c "from sentence_transformers import SentenceTransformer; model = SentenceTransformer('all-MiniLM-L6-v2')"
|
||||||
|
|
||||||
COPY ./backend .
|
COPY ./backend .
|
||||||
|
|
Loading…
Reference in a new issue