Skip to content

Commit 6861d81

Browse files
fix: vllm-sim pre-built docker binaries
Signed-off-by: Alon Kellner <akellner@redhat.com>
1 parent 1f6af38 commit 6861d81

File tree

1 file changed

+2
-16
lines changed

1 file changed

+2
-16
lines changed

tests/e2e/vllm-sim.Dockerfile

Lines changed: 2 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,4 @@
1-
FROM golang AS base
2-
3-
WORKDIR /app
4-
5-
ARG BUILDOS
6-
ARG BUILDARCH
7-
8-
RUN apt-get update && \
9-
apt-get install -y libzmq3-dev pkg-config && \
10-
git clone https://github.com/llm-d/llm-d-inference-sim.git && \
11-
cd llm-d-inference-sim && \
12-
git checkout v0.3.0 && \
13-
GOOS=${BUILDOS} GOARCH=${BUILDARCH} make build
14-
15-
WORKDIR /app/llm-d-inference-sim
1+
FROM ghcr.io/llm-d/llm-d-inference-sim:v0.3.0 AS base
162

173
FROM scratch
18-
COPY --from=base /app/llm-d-inference-sim/bin /bin
4+
COPY --from=base /app/llm-d-inference-sim /bin/llm-d-inference-sim

0 commit comments

Comments
 (0)