We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6f629fd commit cefde26Copy full SHA for cefde26
tools/multicluster/Dockerfile
@@ -0,0 +1,10 @@
1
+FROM golang:1.19 as builder
2
+WORKDIR /go/src
3
+ADD . .
4
+
5
+RUN CGO_ENABLED=0 go build -a -buildvcs=false -o /go/bin/mongodb-multicluster
6
7
+FROM scratch
8
+COPY --from=builder /go/bin/mongodb-multicluster /go/bin/mongodb-multicluster
9
10
+ENTRYPOINT [ "/go/bin/mongodb-multicluster" ]
0 commit comments