Update Dockerfile
Browse files- Dockerfile +3 -1
Dockerfile
CHANGED
@@ -22,7 +22,9 @@ RUN pip install --no-cache-dir -U pip setuptools wheel && \
|
|
22 |
bitsandbytes transformers
|
23 |
|
24 |
COPY --chown=1000 . ${HOME}/app
|
25 |
-
|
|
|
|
|
26 |
cd mergekit && \
|
27 |
pip install --upgrade pip && \
|
28 |
pip install -e .
|
|
|
22 |
bitsandbytes transformers
|
23 |
|
24 |
COPY --chown=1000 . ${HOME}/app
|
25 |
+
|
26 |
+
# clone from ngxson's fork to support tied embeddings models, see https://github.com/arcee-ai/mergekit/pull/483
|
27 |
+
RUN git clone https://github.com/ngxson/mergekit.git -b xsn/tied_embd && \
|
28 |
cd mergekit && \
|
29 |
pip install --upgrade pip && \
|
30 |
pip install -e .
|