https://github.com/etcd-io/etcd
Revision a6b37e26420ba9cbe3050d225121a315fa32db94 authored by Gyuho Lee on 03 June 2021, 20:53:49 UTC, committed by GitHub on 03 June 2021, 20:53:49 UTC
backport-3.5: server: skip unnecessary sprintf which executes proto.Size()
2 parent s 3a82198 + 4563ceb
Raw File
Tip revision: a6b37e26420ba9cbe3050d225121a315fa32db94 authored by Gyuho Lee on 03 June 2021, 20:53:49 UTC
Merge pull request #13081 from wilsonwang371/20210603-backport13075
Tip revision: a6b37e2
Dockerfile-release.ppc64le
FROM k8s.gcr.io/build-image/debian-base-ppc64le:buster-v1.4.0

ADD etcd /usr/local/bin/
ADD etcdctl /usr/local/bin/
ADD etcdutl /usr/local/bin/
ADD var/etcd /var/etcd
ADD var/lib/etcd /var/lib/etcd

EXPOSE 2379 2380

# Define default command.
CMD ["/usr/local/bin/etcd"]
back to top