github.com/pingcap/chaos@v0.0.0-20190710112158-c86faf4b3719/docker/control/Dockerfile (about) 1 FROM golang:1.12.1 2 MAINTAINER siddontang@gmail.com 3 4 RUN apt-get -y -q update && \ 5 apt-get -y -q install software-properties-common && \ 6 apt-get -y -q update && \ 7 apt-get install -qqy \ 8 git \ 9 gnuplot \ 10 wget \ 11 less vim # not required by chaos itself, just for ease of use 12 13 # You need to locate chaos in this directory (up.sh does that automatically) 14 ADD chaos /go/src/github.com/pingcap/chaos 15 16 ADD ./bashrc /root/.bashrc 17 ADD ./init.sh /init.sh 18 RUN chmod +x /init.sh 19 20 CMD /init.sh