From c5db94944908fd6678d986f85571e61800df78f4 Mon Sep 17 00:00:00 2001 From: dougbtv Date: Mon, 16 Dec 2024 10:27:32 -0500 Subject: [PATCH] Removes upstream Dockerfile --- Dockerfile | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile deleted file mode 100644 index 1ef3b81e..00000000 --- a/Dockerfile +++ /dev/null @@ -1,14 +0,0 @@ -FROM golang:1.23 -ADD . /usr/src/whereabouts -RUN mkdir -p $GOPATH/src/github.com/k8snetworkplumbingwg/whereabouts -WORKDIR $GOPATH/src/github.com/k8snetworkplumbingwg/whereabouts -COPY . . -RUN ./hack/build-go.sh - -FROM alpine:latest -LABEL org.opencontainers.image.source https://github.com/k8snetworkplumbingwg/whereabouts -COPY --from=0 /go/src/github.com/k8snetworkplumbingwg/whereabouts/bin/whereabouts . -COPY --from=0 /go/src/github.com/k8snetworkplumbingwg/whereabouts/bin/ip-control-loop . -COPY --from=0 /go/src/github.com/k8snetworkplumbingwg/whereabouts/bin/node-slice-controller . -COPY script/install-cni.sh . -CMD ["/install-cni.sh"]