mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2025-12-08 14:22:40 +01:00
33
fleet/Dockerfile
Normal file
33
fleet/Dockerfile
Normal file
@@ -0,0 +1,33 @@
|
|||||||
|
FROM golang:alpine as builder
|
||||||
|
MAINTAINER Jessica Frazelle <jess@linux.com>
|
||||||
|
|
||||||
|
ENV PATH /go/bin:/usr/local/go/bin:$PATH
|
||||||
|
ENV GOPATH /go
|
||||||
|
|
||||||
|
RUN apk add --no-cache \
|
||||||
|
ca-certificates \
|
||||||
|
gcc \
|
||||||
|
git \
|
||||||
|
make \
|
||||||
|
npm \
|
||||||
|
yarn
|
||||||
|
|
||||||
|
ENV FLEET_VERSION 2.0.0-rc3
|
||||||
|
|
||||||
|
RUN git clone --depth 1 --branch "${FLEET_VERSION}" https://github.com/kolide/fleet.git /go/src/github.com/kolide/fleet
|
||||||
|
|
||||||
|
WORKDIR /go/src/github.com/kolide/fleet
|
||||||
|
|
||||||
|
RUN make deps generate
|
||||||
|
|
||||||
|
RUN CGO_ENABLED=0 go build -a -tags netgo -ldflags '-w -extldflags "-static"' -o /usr/bin/fleet ./cmd/fleet
|
||||||
|
RUN CGO_ENABLED=0 go build -a -tags netgo -ldflags '-w -extldflags "-static"' -o /usr/bin/fleetctl ./cmd/fleetctl
|
||||||
|
|
||||||
|
FROM scratch
|
||||||
|
|
||||||
|
COPY --from=builder /usr/bin/fleet /usr/bin/fleet
|
||||||
|
COPY --from=builder /usr/bin/fleetctl /usr/bin/fleetctl
|
||||||
|
COPY --from=builder /etc/ssl/certs/ /etc/ssl/certs
|
||||||
|
|
||||||
|
ENTRYPOINT [ "fleet" ]
|
||||||
|
CMD [ "--help" ]
|
||||||
@@ -101,6 +101,7 @@ hashicorp/consul
|
|||||||
coredns/coredns
|
coredns/coredns
|
||||||
CouchPotato/CouchPotatoServer
|
CouchPotato/CouchPotatoServer
|
||||||
curl/curl
|
curl/curl
|
||||||
|
kolide/fleet
|
||||||
GoogleCloudPlatform/cloud-sdk-docker
|
GoogleCloudPlatform/cloud-sdk-docker
|
||||||
google/gitiles
|
google/gitiles
|
||||||
bazelbuild/bazel
|
bazelbuild/bazel
|
||||||
|
|||||||
Reference in New Issue
Block a user