Skip to content

Commit 0282ebd

Browse files
committed
chore(vllm-tensorizer): Update naming for base images
1 parent f238cc3 commit 0282ebd

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

.github/configurations/vllm-tensorizer.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ vllm-commit:
22
- 'b6553be1bc75f046b00046a4ad7576364d03c835'
33
flashinfer-commit:
44
- 'v0.2.6.post1'
5-
base-image:
5+
builder-base-image:
66
- 'ghcr.io/coreweave/ml-containers/torch-extras:es-cuda-12.9.1-74755e9-nccl-cuda12.9.1-ubuntu22.04-nccl2.27.5-1-torch2.7.1-vision0.22.1-audio2.7.1-abi1'
7-
lean-base-image:
7+
final-base-image:
88
- 'ghcr.io/coreweave/ml-containers/torch-extras:es-cuda-12.9.1-74755e9-base-cuda12.9.1-ubuntu22.04-torch2.7.1-vision0.22.1-audio2.7.1-abi1'

.github/workflows/vllm-tensorizer.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,5 +25,5 @@ jobs:
2525
build-args: |
2626
VLLM_COMMIT=${{ matrix.vllm-commit }}
2727
FLASHINFER_COMMIT=${{ matrix.flashinfer-commit }}
28-
BASE_IMAGE=${{ matrix.base-image }}
29-
LEAN_BASE_IMAGE=${{ matrix.lean-base-image }}
28+
BASE_IMAGE=${{ matrix.builder-base-image }}
29+
LEAN_BASE_IMAGE=${{ matrix.final-base-image }}

vllm-tensorizer/Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
ARG BASE_IMAGE="ghcr.io/coreweave/ml-containers/torch-extras:es-cuda-12.9.1-74755e9-nccl-cuda12.9.1-ubuntu22.04-nccl2.27.5-1-torch2.7.1-vision0.22.1-audio2.7.1-abi1"
2-
ARG LEAN_BASE_IMAGE="ghcr.io/coreweave/ml-containers/torch-extras:es-cuda-12.9.1-74755e9-base-cuda12.9.1-ubuntu22.04-torch2.7.1-vision0.22.1-audio2.7.1-abi1"
1+
ARG BUILDER_BASE_IMAGE="ghcr.io/coreweave/ml-containers/torch-extras:es-cuda-12.9.1-74755e9-nccl-cuda12.9.1-ubuntu22.04-nccl2.27.5-1-torch2.7.1-vision0.22.1-audio2.7.1-abi1"
2+
ARG FINAL_BASE_IMAGE="ghcr.io/coreweave/ml-containers/torch-extras:es-cuda-12.9.1-74755e9-base-cuda12.9.1-ubuntu22.04-torch2.7.1-vision0.22.1-audio2.7.1-abi1"
33

44
FROM scratch AS freezer
55
WORKDIR /
66
COPY --chmod=755 freeze.sh /
77

8-
FROM ${BASE_IMAGE} AS builder-base
8+
FROM ${BUILDER_BASE_IMAGE} AS builder-base
99

1010
ARG MAX_JOBS="32"
1111

@@ -83,7 +83,7 @@ RUN --mount=type=bind,from=flashinfer-downloader,source=/git/flashinfer,target=/
8383
WORKDIR /wheels
8484

8585

86-
FROM ${LEAN_BASE_IMAGE} AS base
86+
FROM ${FINAL_BASE_IMAGE} AS base
8787

8888
WORKDIR /workspace
8989

0 commit comments

Comments
 (0)