[Bugfix] Fix missing ARG in Dockerfile for arm64 platforms (#17261)

Signed-off-by: lkm-schulz <44176356+lkm-schulz@users.noreply.github.com>
This commit is contained in:
Lennart K. M. Schulz 2025-04-28 04:38:14 +02:00 committed by GitHub
parent d8bccde686
commit d1aeea7553
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -297,6 +297,7 @@ RUN mv vllm test_docs/
#################### OPENAI API SERVER ####################
# base openai image with additional requirements, for any subsequent openai-style images
FROM vllm-base AS vllm-openai-base
ARG TARGETPLATFORM
# This timeout (in seconds) is necessary when installing some dependencies via uv since it's likely to time out
# Reference: https://github.com/astral-sh/uv/pull/1694