From 379a1869c5f924dd311b5ed7c804159b7183dd02 Mon Sep 17 00:00:00 2001 From: Gyuho Lee Date: Tue, 28 Aug 2018 18:07:41 -0700 Subject: [PATCH] tests/Dockerfile: update import path to "go.etcd.io/etcd" Signed-off-by: Gyuho Lee --- tests/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/Dockerfile b/tests/Dockerfile index 666e9760f..3012dd6be 100644 --- a/tests/Dockerfile +++ b/tests/Dockerfile @@ -39,8 +39,8 @@ RUN rm -rf ${GOROOT} \ && mkdir -p ${GOPATH}/src ${GOPATH}/bin \ && go version -RUN mkdir -p ${GOPATH}/src/github.com/coreos/etcd -WORKDIR ${GOPATH}/src/github.com/coreos/etcd +RUN mkdir -p ${GOPATH}/src/go.etcd.io/etcd +WORKDIR ${GOPATH}/src/go.etcd.io/etcd ADD ./scripts/install-marker.sh /tmp/install-marker.sh