We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1f6af38 commit 6861d81Copy full SHA for 6861d81
tests/e2e/vllm-sim.Dockerfile
@@ -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
+FROM ghcr.io/llm-d/llm-d-inference-sim:v0.3.0 AS base
16
17
FROM scratch
18
-COPY --from=base /app/llm-d-inference-sim/bin /bin
+COPY --from=base /app/llm-d-inference-sim /bin/llm-d-inference-sim
0 commit comments