blob: 29b1a2b94fdfcb37afc0c9d7632df02c232acf98 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
FROM cassandra:3
#ENV DEBIAN_FRONTEND noninteractive
RUN apt-get -y update && apt-get -y install --no-install-recommends curl vim apt-utils
COPY chef-solo /root/chef-solo/
COPY chef-repo/cookbooks /root/chef-solo/cookbooks/
# install chef-solo
RUN curl -L https://omnitruck.chef.io/install.sh | bash
COPY startup.sh /root/
RUN chmod 770 /root/startup.sh
ENTRYPOINT [ "/root/startup.sh" ]
|