Selaa lähdekoodia

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 vuotta sitten
vanhempi
commit
a2f6ec3128
1 muutettua tiedostoa jossa 2 lisäystä ja 2 poistoa
  1. 2 2
      Dockerfile-release

+ 2 - 2
Dockerfile-release

@@ -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