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.
release-3.1
Gyu-Ho Lee 2016-06-30 11:47:33 -07:00
parent c68d60c99f
commit a2f6ec3128
1 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
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/
EXPOSE 2379 2380