Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions network/benchmarks/netperf/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,15 @@
#
# Args: --mode=worker --host=<service cluster ip> --port=5202
#
ARG GOLANG_VERSION=1.18
FROM golang:${GOLANG_VERSION} as builder
ARG GOLANG_VERSION=1.24
FROM golang:${GOLANG_VERSION} AS builder
WORKDIR /workspace

COPY nptest/nptest.go nptest.go
COPY go.sum go.sum
COPY go.mod go.mod

RUN go build -o nptests
RUN CGO_ENABLED=0 go build -o nptests

FROM debian:bullseye
ENV LD_LIBRARY_PATH=/usr/local/lib
Expand Down