aboutsummaryrefslogtreecommitdiffstats
path: root/certServiceK8sExternalProvider/Dockerfile
blob: c6c34a85bbdf34add645e5908af95f185e9d5230 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Build the manager binary
FROM golang:1.15.2 as builder

WORKDIR /workspace
# Copy the Go Modules manifests
COPY go.* ./

# 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 src/ ./src

# Build
RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 GO111MODULE=on go build -a -o oom-certservice-k8s-external-provider main.go


# Runtime container definition
FROM gcr.io/distroless/static:latest
WORKDIR /
COPY --from=builder /workspace/oom-certservice-k8s-external-provider .
ENTRYPOINT ["/oom-certservice-k8s-external-provider"]