fleet/infrastructure/loadtesting/terraform/docker/loadtest.Dockerfile

7 lines
280 B
Text
Raw Normal View History

FROM golang:1.19.4
ARG TAG
RUN git clone -b $TAG --depth=1 --no-tags --progress --no-recurse-submodules https://github.com/fleetdm/fleet.git && cd /go/fleet/cmd/osquery-perf/ && go build .
FROM golang:1.19.4
COPY --from=0 /go/fleet/cmd/osquery-perf/osquery-perf /go/osquery-perf