blob: c895481bffbc448e808e9715a3d29ed93250b130 [file] [log] [blame]
Dan Timoney471dafa2017-08-21 14:44:05 -04001# Base ubuntu with added packages needed for open ecomp
Timoney, Dan (dt5972)6f0c0102018-06-18 23:01:08 -04002FROM onap/ccsdk-odl-oxygen-image:${project.version}
Timoney, Dan (dt5972)e14a0202018-06-22 17:05:16 -04003MAINTAINER CCSDK Team (onap-ccsdk@lists.onap.org)
Dan Timoney471dafa2017-08-21 14:44:05 -04004ENV JAVA_HOME /usr/lib/jvm/java-8-openjdk-amd64
Timoney, Dan (dt5972)e14a0202018-06-22 17:05:16 -04005ENV ODL_HOME /opt/opendaylight
Timoney, Dan (dt5972)21821db2018-03-13 19:26:40 -04006ENV SDNC_CONFIG_DIR /opt/onap/ccsdk/data/properties
Timoney, Dan (dt5972)e14a0202018-06-22 17:05:16 -04007ENV CCSDK_SLI_CORE_REPO mvn:org.onap.ccsdk.sli.core/ccsdk-sli-core-all/${ccsdk.sli.core.version}/xml/features
8ENV CCSDK_SLI_ADAPTORS_REPO mvn:org.onap.ccsdk.sli.adaptors/ccsdk-sli-adaptors-all/${ccsdk.sli.adaptors.version}/xml/features
9ENV CCSDK_SLI_NORTHBOUND_REPO mvn:org.onap.ccsdk.sli.northbound/ccsdk-sli-northbound-all/${ccsdk.sli.northbound.version}/xml/features
10ENV CCSDK_SLI_PLUGINS_REPO mvn:org.onap.ccsdk.sli.plugins/ccsdk-sli-plugins-all/${ccsdk.sli.plugins.version}/xml/features
Timoney, Dan (dt5972)be94cc12018-07-02 18:02:35 -040011ENV ANSIBLE_GPG_KEY ${ansible.gpg.key}
12
Dan Timoney74e4e8d2017-08-22 11:51:54 -040013# copy the opendaylight credentials
Timoney, Dan (dt5972)e14a0202018-06-22 17:05:16 -040014COPY idmlight.db.mv.db $ODL_HOME/data
15
16
17# copy CCSDK mvn artifacts to ODL repository
18COPY system /tmp/system
19RUN rsync -a /tmp/system $ODL_HOME && rm -rf /tmp/system
20
21# Add CCSDK repositories to boot repositories
22RUN cp $ODL_HOME/etc/org.apache.karaf.features.cfg $ODL_HOME/etc/org.apache.karaf.features.cfg.orig
23RUN cat $ODL_HOME/etc/org.apache.karaf.features.cfg.orig | sed -e "\|featuresRepositories|s|$|, ${CCSDK_SLI_CORE_REPO}, ${CCSDK_SLI_ADAPTORS_REPO}, ${CCSDK_SLI_NORTHBOUND_REPO}, ${CCSDK_SLI_PLUGINS_REPO}|" > $ODL_HOME/etc/org.apache.karaf.features.cfg
24
25# Create odl user
26RUN useradd odl
27
Timoney, Dan (dt5972)be94cc12018-07-02 18:02:35 -040028# Install ansible
29COPY ansible-sources.list /etc/apt/sources.list.d
30RUN gpg --keyserver hkp://keyserver.ubuntu.com:80 --recv ${ANSIBLE_GPG_KEY} && \
31 gpg --export --armor ${ANSIBLE_GPG_KEY} | apt-key add - && \
32 apt-get update && \
33 apt-get install -y ansible
34
35# Install ansible-opendaylight
36RUN ansible-galaxy install git+https://git.opendaylight.org/gerrit/integration/packaging/ansible-opendaylight
Timoney, Dan (dt5972)e14a0202018-06-22 17:05:16 -040037
38# Copy ccsdk install playbook
39COPY install_ccsdk.yml /tmp
40
41# Install features in ODL
42RUN ansible-playbook -i "localhost," -c local /tmp/install_ccsdk.yml
43
Dan Timoney471dafa2017-08-21 14:44:05 -040044
Dan Timoney74e4e8d2017-08-22 11:51:54 -040045# copy deliverables to opt
Dan Timoney471dafa2017-08-21 14:44:05 -040046COPY opt /opt
Timoney, Dan (dt5972)e14a0202018-06-22 17:05:16 -040047COPY org.ops4j.pax.logging.cfg /opt/opendaylight/etc/org.ops4j.pax.logging.cfg
Dan Timoney471dafa2017-08-21 14:44:05 -040048
Marcus G K Williamsdc299ed2017-09-14 15:15:45 -070049
Timoney, Dan (dt5972)e14a0202018-06-22 17:05:16 -040050ENTRYPOINT /opt/onap/ccsdk/bin/startODL.sh
Dan Timoney471dafa2017-08-21 14:44:05 -040051EXPOSE 8181