Skip to content

Commit 0d27be5

Browse files
committed
chore(tests): update etcd versions in test-etcd Dockerfile
1 parent ce05b21 commit 0d27be5

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

tests/etcdutils/Dockerfile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@ RUN apt-get update -q && DEBIAN_FRONTEND=noninteractive apt-get install -qy wget
66
RUN wget -qO- https://storage.googleapis.com/golang/go1.3.linux-amd64.tar.gz | tar -C /usr/local -xz
77
ENV PATH /usr/local/go/bin:$PATH
88

9-
# Build etcd v0.4.3. Keep this in sync with Deis' CoreOS version.
10-
RUN git clone -b v0.4.3 -q https://github.com/coreos/etcd.git /opt/etcd
11-
RUN cd /opt/etcd && ./build
9+
# Build etcd v0.4.5. Keep this in sync with Deis' version.
10+
RUN git clone -q https://github.com/coreos/etcd.git /opt/etcd
11+
RUN cd /opt/etcd && git checkout -q v0.4.5 && ./build
1212

13-
# Download latest stable etcdctl. Keep this in sync with Deis' CoreOS version.
14-
ADD https://s3-us-west-2.amazonaws.com/opdemand/etcdctl-v0.4.4 /usr/local/bin/etcdctl
13+
# Download latest stable etcdctl. Keep this in sync with Deis' version.
14+
ADD https://s3-us-west-2.amazonaws.com/opdemand/etcdctl-v0.4.5 /usr/local/bin/etcdctl
1515
RUN chmod +x /usr/local/bin/etcdctl
1616

1717
EXPOSE 4001 7001

0 commit comments

Comments
 (0)