From 060c59e97d0c932272d13dd47c01c4ae5b76fe07 Mon Sep 17 00:00:00 2001 From: Alex Date: Tue, 9 Jan 2024 11:41:25 +0000 Subject: [PATCH] Update mpnet-base-v2.zip download URL --- application/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/Dockerfile b/application/Dockerfile index 6f70d2f3..81ed570a 100644 --- a/application/Dockerfile +++ b/application/Dockerfile @@ -8,7 +8,7 @@ RUN pip install --upgrade pip && pip install tiktoken==0.5.2 COPY requirements.txt . RUN pip install -r requirements.txt RUN apt-get install -y wget unzip -RUN wget https://docsgpt.s3.eu-west-1.amazonaws.com/models/embeddings/mpnet-base-v2.zip +RUN wget https://d3dg1063dc54p9.cloudfront.net/models/embeddings/mpnet-base-v2.zip RUN unzip mpnet-base-v2.zip -d model RUN rm mpnet-base-v2.zip