mirror of https://github.com/k3s-io/k3s
13 lines
396 B
Docker
13 lines
396 B
Docker
FROM google/debian:wheezy
|
|
|
|
RUN apt-get update
|
|
RUN apt-get -yy -q install iptables ca-certificates
|
|
COPY hyperkube /hyperkube
|
|
RUN chmod a+rx /hyperkube
|
|
|
|
|
|
COPY master-multi.json /etc/kubernetes/manifests-multi/master.json
|
|
COPY master.json /etc/kubernetes/manifests/master.json
|
|
COPY safe_format_and_mount /usr/share/google/safe_format_and_mount
|
|
RUN chmod a+rx /usr/share/google/safe_format_and_mount
|