-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
33 lines (28 loc) · 1.05 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
# Build the webhook binary
FROM golang:1.17 as builder
WORKDIR /workspace
# 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 the go source
COPY main.go main.go
COPY pkg/ pkg/
COPY internal/ internal/
ARG VERSION_PKG
ARG LM_K8S_VERSION
ARG VERSION_DATE
# Build
RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 GO111MODULE=on go build -ldflags="-X ${VERSION_PKG}.lmK8sWebhook=${LM_K8S_VERSION} -X ${VERSION_PKG}.buildDate=${VERSION_DATE}" -a -o lmk8swebhook main.go
FROM alpine:3.15.0
LABEL org.opencontainers.image.source https://github.com/logicmonitor/lm-k8s-webhook
RUN apk --no-cache add ca-certificates
RUN addgroup -S -g 1001 lmuser && adduser -S lmuser -u 1001 -G lmuser
COPY --from=builder /workspace/lmk8swebhook /usr/local/bin/webhook/
WORKDIR /usr/local/bin/webhook
RUN chown -R lmuser:lmuser .
RUN chmod +x lmk8swebhook
USER lmuser
ENTRYPOINT ["./lmk8swebhook"]