mirror of
https://github.com/etcd-io/etcd.git
synced 2024-09-27 06:25:44 +00:00

Updates the base image for all arch releases to the new location (us.gcr.io/k8s-artifacts-prod/build-image) as well as to the latest version (v2.1.0). This should fix a number of vulnerabilities that are in the 1.0.0 base image release.
12 lines
252 B
Plaintext
12 lines
252 B
Plaintext
FROM us.gcr.io/k8s-artifacts-prod/build-image/debian-base-s390x:v2.1.0
|
|
|
|
ADD etcd /usr/local/bin/
|
|
ADD etcdctl /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"]
|