Browse Source

release: fix Dockerfile etcd binary paths

release script uses binary files in 'release/image-docker',
not the ones in "bin/". Tested with v3.0.0 release.
Gyu-Ho Lee 9 years ago
parent
commit
a2f6ec3128
1 changed files with 2 additions and 2 deletions
  1. 2 2
      Dockerfile-release

+ 2 - 2
Dockerfile-release

@@ -1,7 +1,7 @@
 FROM alpine:latest
 FROM alpine:latest
 
 
-ADD bin/etcd /usr/local/bin/
-ADD bin/etcdctl /usr/local/bin/
+ADD etcd /usr/local/bin/
+ADD etcdctl /usr/local/bin/
 RUN mkdir -p /var/etcd/
 RUN mkdir -p /var/etcd/
 
 
 EXPOSE 2379 2380
 EXPOSE 2379 2380