From 8ce3cad72fbd0dc6524e495ecddbbc58fd8fd09e Mon Sep 17 00:00:00 2001 From: Robert Shaw Date: Sat, 12 Jul 2025 19:56:56 +0000 Subject: [PATCH] updated Signed-off-by: Robert Shaw --- Dockerfile | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000000000..beb001ca2f5c8 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,12 @@ +ARG CUDA_VERSION=12.8.1 +from nvidia/cuda:${CUDA_VERSION}-devel-ubuntu22.04 + +RUN wget -qO- https://astral.sh/uv/install.sh | sh + +WORKDIR /workspace +RUN git clone https://github.com/vllm-project/vllm.git && \ + VLLM_USE_PRECOMPILED=1 uv pip install -e . + +WORKDIR /workspace/vllm +ENV VLLM_SHA=270d05d9fdf9fc68767056204a1fee078358b122 +RUN git fetch && git checkout VLLM_SHA