mssing file
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
@@ -15,7 +15,7 @@ COPY --chown=user requirements.txt ./
|
|
15 |
RUN pip install -r requirements.txt
|
16 |
|
17 |
RUN huggingface-cli download sentence-transformers/all-mpnet-base-v2 \
|
18 |
-
--local-dir
|
19 |
|
20 |
# Copy the rest of your application's code
|
21 |
COPY --chown=user ./src .
|
|
|
15 |
RUN pip install -r requirements.txt
|
16 |
|
17 |
RUN huggingface-cli download sentence-transformers/all-mpnet-base-v2 \
|
18 |
+
--local-dir ./model/all-mpnet-base-v2 --local-dir-use-symlinks False
|
19 |
|
20 |
# Copy the rest of your application's code
|
21 |
COPY --chown=user ./src .
|