Skip to content

Commit dd6248d

Browse files
committed
Update s390x Dockerfile to match 2.19
1 parent bc84d51 commit dd6248d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Dockerfile.s390x.ubi

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Base UBI image for s390x architecture
2-
ARG BASE_UBI_IMAGE_TAG=9.5-1742914212
2+
ARG BASE_UBI_IMAGE_TAG=9.5-1741850109
33
ARG PYTHON_VERSION=3.12
44
ARG VLLM_TGIS_ADAPTER_VERSION="0.7.0"
55
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 \
137137
--mount=type=bind,from=hf-xet-builder,source=/tmp/hf-xet/dist,target=/tmp/hf-xet-wheels/ \
138138
export PATH="/root/.cargo/bin:/root/.rustup/bin:$PATH" \
139139
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) && \
140141
sed -i '/^torch/d' requirements/build.txt && \
141142
sed -i '/^numba/d' requirements/common.txt && \
142-
HF_XET_WHL_FILE=$(ls /tmp/hf-xet-wheels/*.whl | head -n 1) && \
143143
uv pip install -v \
144144
$ARROW_WHL_FILE \
145145
$HF_XET_WHL_FILE \
@@ -192,7 +192,7 @@ RUN --mount=type=cache,target=/root/.cache/uv \
192192
--mount=type=bind,from=rust,source=/root/.cargo,target=/root/.cargo,rw \
193193
--mount=type=bind,from=rust,source=/root/.rustup,target=/root/.rustup,rw \
194194
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} && \
196196
cd /tmp && touch control
197197

198198
FROM vllm-openai as vllm-grpc-adapter

0 commit comments

Comments
 (0)