|
1 | 1 | # Base UBI image for s390x architecture
|
2 |
| -ARG BASE_UBI_IMAGE_TAG=9.5-1742914212 |
| 2 | +ARG BASE_UBI_IMAGE_TAG=9.5-1741850109 |
3 | 3 | ARG PYTHON_VERSION=3.12
|
4 | 4 | ARG VLLM_TGIS_ADAPTER_VERSION="0.7.0"
|
5 | 5 | FROM registry.access.redhat.com/ubi9/ubi-minimal:${BASE_UBI_IMAGE_TAG} AS base
|
@@ -137,9 +137,9 @@ RUN --mount=type=cache,target=/root/.cache/uv \
|
137 | 137 | --mount=type=bind,from=hf-xet-builder,source=/tmp/hf-xet/dist,target=/tmp/hf-xet-wheels/ \
|
138 | 138 | export PATH="/root/.cargo/bin:/root/.rustup/bin:$PATH" \
|
139 | 139 | ARROW_WHL_FILE=$(ls /tmp/arrow-wheels/pyarrow-*.whl | head -n 1) && \
|
| 140 | + HF_XET_WHL_FILE=$(ls /tmp/hf-xet-wheels/*.whl | head -n 1) && \ |
140 | 141 | sed -i '/^torch/d' requirements/build.txt && \
|
141 | 142 | sed -i '/^numba/d' requirements/common.txt && \
|
142 |
| - HF_XET_WHL_FILE=$(ls /tmp/hf-xet-wheels/*.whl | head -n 1) && \ |
143 | 143 | uv pip install -v \
|
144 | 144 | $ARROW_WHL_FILE \
|
145 | 145 | $HF_XET_WHL_FILE \
|
@@ -192,7 +192,7 @@ RUN --mount=type=cache,target=/root/.cache/uv \
|
192 | 192 | --mount=type=bind,from=rust,source=/root/.cargo,target=/root/.cargo,rw \
|
193 | 193 | --mount=type=bind,from=rust,source=/root/.rustup,target=/root/.rustup,rw \
|
194 | 194 | export PATH="$PATH:/root/.cargo/bin:/root/.rustup/bin" && \
|
195 |
| - HOME=/root uv pip install "$(echo /workspace/vllm/dist/*.whl)[tensorizer]" vllm-tgis-adapter==${VLLM_TGIS_ADAPTER_VERSION} && \ |
| 195 | + HOME=/root uv pip install "$(echo /workspace/vllm/dist/*.whl)[tensorizer]" vllm-tgis-adapter==${VLLM_TGIS_ADAPTER_VERSION} && \ |
196 | 196 | cd /tmp && touch control
|
197 | 197 |
|
198 | 198 | FROM vllm-openai as vllm-grpc-adapter
|
|
0 commit comments