Browse Source

tests/Dockerfile: update import path to "go.etcd.io/etcd"

Signed-off-by: Gyuho Lee <leegyuho@amazon.com>
Gyuho Lee 7 years ago
parent
commit
379a1869c5
1 changed files with 2 additions and 2 deletions
  1. 2 2
      tests/Dockerfile

+ 2 - 2
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