blob: 128387ae14546b8f7e3daa261a1072646e04058b [file] [log] [blame]
Michael Lando9dd269d2017-02-20 01:04:22 +02001FROM jetty:9.3.15-jre8
2
3RUN apt-get -y update
4RUN apt-get -y install apt-utils
5RUN apt-get -y install curl
6RUN apt-get -y install vim
7RUN apt-get -y install jq
8RUN apt-get -y install python libssl-dev libcurl4-openssl-dev python-dev gcc
9
10COPY chef-solo /root/chef-solo/
11COPY chef-repo/cookbooks/. /root/chef-solo/cookbooks/
12
13RUN python /root/chef-solo/cookbooks/sdc-normatives/files/default/get-pip.py
14RUN pip install pycurl
15
16# install chef-solo
Grinberg Motic3bda482017-02-23 11:24:34 +020017RUN curl -L https://omnitruck.chef.io/install.sh | bash
Michael Lando9dd269d2017-02-20 01:04:22 +020018
19ADD onboarding-be-__SDC-RELEASE__.war ${JETTY_BASE}/webapps/
20ADD catalog-be-__SDC-RELEASE__.war ${JETTY_BASE}/webapps/
21RUN chown -R jetty:jetty ${JETTY_BASE}/webapps
22
23COPY startup.sh /root/
24
25RUN chmod 770 /root/startup.sh
26
27ENTRYPOINT [ "/root/startup.sh" ]