forked from SumoLogic-Labs/sumocli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
35 lines (27 loc) · 1.07 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# Build the manager binary
FROM golang:latest as builder
WORKDIR ${GOPATH}/src/github.com/dpc-sdp/sumocli
# Copy the Go Modules manifests
COPY go.mod go.mod
COPY go.sum go.sum
# cache deps before building and copying source so that we don't need to re-download as much
# and so that source changes don't invalidate our downloaded layer
RUN go mod download
COPY . ./
# Build
ARG TARGETPLATFORM=linux/amd64
RUN CGO_ENABLED=0 \
GOOS=${TARGETPLATFORM%%/*} \
GOARCH=${TARGETPLATFORM#*/} \
go build -a -o /bin/sumocli ./cmd/sumocli
# Use distroless as minimal base image to package the manager binary
# Refer to https://github.com/GoogleContainerTools/distroless for more details
FROM gcr.io/distroless/static:nonroot
LABEL org.opencontainers.image.authors="Single Digital Presence"
LABEL org.opencontainers.image.description="A CLI application that lets you manage/automate your Sumo Logic tenancy."
LABEL org.opencontainers.image.source="https://github.com/dpc-sdp/sumocli"
WORKDIR /
COPY --from=builder /bin/sumocli .
USER nonroot:nonroot
ENTRYPOINT ["/sumocli"]
CMD ["--help"]