mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 08:55:24 +00:00
5a426c86b0
Bumps golang from 1.20.3-alpine to 1.20.5-alpine. Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
17 lines
513 B
Docker
17 lines
513 B
Docker
FROM golang:1.20.5-alpine@sha256:b036c52b3bcc8e4e31be19a7a902bb9897b2bf18028f40fd306a9778bab5771c
|
|
|
|
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
|