vasraz | 10999e8 | 2022-03-28 16:37:59 +0100 | [diff] [blame] | 1 | FROM cassandra:3.11.12 |
| 2 | |
| 3 | RUN apt-get -o Acquire::Check-Valid-Until=false update && \ |
| 4 | apt-get -y --no-install-recommends install \ |
| 5 | apt-transport-https \ |
| 6 | curl \ |
| 7 | wget \ |
| 8 | perl \ |
| 9 | python \ |
| 10 | ntp && \ |
| 11 | apt-get -y autoremove && \ |
| 12 | curl -L https://omnitruck.chef.io/install.sh | bash -s -- -v 13.12.14 |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 13 | |
| 14 | COPY chef-solo /root/chef-solo/ |
| 15 | COPY chef-repo/cookbooks /root/chef-solo/cookbooks/ |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 16 | COPY startup.sh /root/ |
Areli Fuss | 0a89f59 | 2017-09-11 10:27:29 +0300 | [diff] [blame] | 17 | |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 18 | RUN chmod 770 /root/startup.sh |
Areli Fuss | 0a89f59 | 2017-09-11 10:27:29 +0300 | [diff] [blame] | 19 | |
vasraz | 10999e8 | 2022-03-28 16:37:59 +0100 | [diff] [blame] | 20 | ENTRYPOINT [ "/root/startup.sh" ] |