Files
play-with-docker/dockerfiles/k8s/Dockerfile.final
Marcos Nils 3481442768 Initial k8s support in libplayground (#216)
* Initial k8s support in libplayground

* Make tasks never give up + custom event for k8s cluster status
2017-11-16 18:23:13 -03:00

9 lines
216 B
Docker

FROM franela/kind_builder
COPY motd /etc/motd
RUN echo $'cat /etc/motd \n\
export PS1="[\h \W]$ "' >> /root/.bash_profile
CMD systemctl start docker && systemctl start kubelet \
&& while true; do bash -l; done