mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 17:05:18 +00:00
8457e55b53
* Bump go to 1.19.1 * Bump remaining go-version to the 1.19.1 * Add extra paths for test-go * Oops, putting the right path in the right place * gofmt file * gofmt ALL THE THINGS * Moar changes * Actually, go.mod doesn't like minor versions
17 lines
441 B
Docker
17 lines
441 B
Docker
FROM golang:1.19.1-alpine
|
|
|
|
ARG ENROLL_SECRET
|
|
ARG HOST_COUNT
|
|
ARG SERVER_URL
|
|
|
|
ENV ENROLL_SECRET ${ENROLL_SECRET}
|
|
ENV HOST_COUNT ${HOST_COUNT}
|
|
ENV SERVER_URL ${SERVER_URL}
|
|
|
|
COPY ./cmd/osquery-perf/agent.go ./go.mod ./go.sum ./cmd/osquery-perf/mac10.14.6.tmpl /osquery-perf/
|
|
WORKDIR /osquery-perf/
|
|
RUN go mod download
|
|
RUN go build -o osquery-perf
|
|
|
|
CMD ./osquery-perf -enroll_secret $ENROLL_SECRET -host_count $HOST_COUNT -server_url $SERVER_URL
|