aboutsummaryrefslogtreecommitdiffstats
path: root/certServiceK8sExternalProvider/Dockerfile
diff options
context:
space:
mode:
authorJan Malkiewicz <jan.malkiewicz@nokia.com>2020-09-30 11:29:19 +0200
committerJan Malkiewicz <jan.malkiewicz@nokia.com>2020-09-30 13:02:59 +0200
commit93fdf569416a631dfc9aa0f5e0173c70a70d931a (patch)
treec4c07c6561ad4dd1d0acc3becb629c5c6411d9e3 /certServiceK8sExternalProvider/Dockerfile
parent8dd3ea1c8851249904cf6e6000f099246d3f0761 (diff)
[OOM-K8S-CERT-EXTERNAL-PROVIDER] Add project
This project is a GOlang implementation of an external provider for kubernetes cert-manager. External provider will use OOM CertService as backend signing CA. Issue-ID: OOM-2559 Signed-off-by: Jan Malkiewicz <jan.malkiewicz@nokia.com> Change-Id: Ide31ca64c29763c9d4e9bdf58d8f50ffddcaaf5d
Diffstat (limited to 'certServiceK8sExternalProvider/Dockerfile')
-rw-r--r--certServiceK8sExternalProvider/Dockerfile22
1 files changed, 22 insertions, 0 deletions
diff --git a/certServiceK8sExternalProvider/Dockerfile b/certServiceK8sExternalProvider/Dockerfile
new file mode 100644
index 00000000..baea932b
--- /dev/null
+++ b/certServiceK8sExternalProvider/Dockerfile
@@ -0,0 +1,22 @@
+# 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
+
+# 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"]