diff options
Diffstat (limited to 'sdc-os-chef/sdc-backend')
-rw-r--r-- | sdc-os-chef/sdc-backend/Dockerfile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sdc-os-chef/sdc-backend/Dockerfile b/sdc-os-chef/sdc-backend/Dockerfile index 47ca00eaa5..d68b59078a 100644 --- a/sdc-os-chef/sdc-backend/Dockerfile +++ b/sdc-os-chef/sdc-backend/Dockerfile @@ -15,7 +15,9 @@ RUN pip install pycurl # install chef-solo #RUN curl -L http://www.opscode.com/chef/install.sh | bash -RUN bash chef-install.sh +COPY chef-install.sh /root/ +RUN chmod 770 /root/chef-install.sh +RUN bash /root/chef-install.sh ADD onboarding-be-__SDC-RELEASE__.war ${JETTY_BASE}/webapps/ ADD catalog-be-__SDC-RELEASE__.war ${JETTY_BASE}/webapps/ |