Skip to content

Commit 506dc53

Browse files
committed
fix: inference server was blind referencing the standard library when compiling
Signed-off-by: Paul Bastide <pbastide@us.ibm.com>
1 parent 8eadec3 commit 506dc53

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rhcl/llm-d-inference-sim/Containerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ RUN go mod download
1818

1919
# Build simulator, no Python, no embedded tokenizer, no CGO for ZMQ, use pure Go
2020
# The default kv-cache build uses UDS tokenizer (//go:build !embedded_tokenizers)
21-
RUN CGO_ENABLED=0 GOOS=${TARGETOS} GOARCH=${TARGETARCH} go build -o bin/llm-d-inference-sim cmd/cmd.go
21+
RUN CGO_ENABLED=0 GOOS=${TARGETOS} GOARCH=${TARGETARCH} go build -o bin/llm-d-inference-sim ./cmd/cmd.go
2222

2323
FROM registry.access.redhat.com/ubi10/ubi-micro:latest
2424

0 commit comments

Comments
 (0)