From 8075b9af28b143bb6bf6caed44d44c79c9a4e853 Mon Sep 17 00:00:00 2001 From: Adar Nimrod <nimrod@shore.co.il> Date: Fri, 1 Jan 2021 23:08:07 +0200 Subject: [PATCH] Something to test/ deploy to Kubernetes. --- Dockerfile | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..6b65395 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,12 @@ +FROM registry.hub.docker.com/library/golang:alpine3.12 as kind +RUN GO111MODULE=on go get sigs.k8s.io/kind@v0.9.0 + +FROM registry.hub.docker.com/library/alpine:3.12 +COPY --from=kind /go/bin/kind /usr/local/bin/ +RUN apk add --update --no-cache --repository http://dl-cdn.alpinelinux.org/alpine/edge/testing/ \ + helm \ + kubectl \ + && \ + apk add --update --no-cache \ + docker-cli \ + ; -- GitLab