We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 0385a45 + 4175ce7 commit b0b4e7eCopy full SHA for b0b4e7e
1 file changed
Dockerfile
@@ -0,0 +1,9 @@
1
+FROM golang:1.13.7-alpine3.11 AS builder
2
+RUN apk --no-cache add gcc musl-dev
3
+WORKDIR /go/src/github.com/rancher/kine
4
+COPY . .
5
+RUN GO111MODULE=on go build -o /bin/kine
6
+
7
+FROM alpine:3.11
8
+COPY --from=builder /bin/kine /bin/kine
9
+ENTRYPOINT ["/bin/kine"]
0 commit comments