File tree Expand file tree Collapse file tree 3 files changed +13
-0
lines changed Expand file tree Collapse file tree 3 files changed +13
-0
lines changed Original file line number Diff line number Diff line change @@ -62,6 +62,7 @@ ENV HUGGINGFACE_HUB_CACHE=/data \
62
62
RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
63
63
ca-certificates \
64
64
libssl-dev \
65
+ curl \
65
66
&& rm -rf /var/lib/apt/lists/*
66
67
67
68
Original file line number Diff line number Diff line change @@ -113,6 +113,12 @@ ENV HUGGINGFACE_HUB_CACHE=/data \
113
113
PORT=80 \
114
114
USE_FLASH_ATTENTION=$DEFAULT_USE_FLASH_ATTENTION
115
115
116
+ RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
117
+ ca-certificates \
118
+ libssl-dev \
119
+ curl \
120
+ && rm -rf /var/lib/apt/lists/*
121
+
116
122
FROM base AS grpc
117
123
118
124
COPY --from=grpc-builder /usr/src/target/release/text-embeddings-router /usr/local/bin/text-embeddings-router
Original file line number Diff line number Diff line change @@ -118,6 +118,12 @@ ENV HUGGINGFACE_HUB_CACHE=/data \
118
118
PORT=80 \
119
119
USE_FLASH_ATTENTION=$DEFAULT_USE_FLASH_ATTENTION
120
120
121
+ RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
122
+ ca-certificates \
123
+ libssl-dev \
124
+ curl \
125
+ && rm -rf /var/lib/apt/lists/*
126
+
121
127
COPY --from=builder /usr/src/target/release/text-embeddings-router-75 /usr/local/bin/text-embeddings-router-75
122
128
COPY --from=builder /usr/src/target/release/text-embeddings-router-80 /usr/local/bin/text-embeddings-router-80
123
129
COPY --from=builder /usr/src/target/release/text-embeddings-router-90 /usr/local/bin/text-embeddings-router-90
You can’t perform that action at this time.
0 commit comments