blob: 47b120816940be58055fb9efe1b1fe74d9f4f1ca [file] [log] [blame]
Dan Timoney471dafa2017-08-21 14:44:05 -04001# Base ubuntu with added packages needed for open ecomp
Timoney, Dan (dt5972)e7cfae52019-01-03 15:14:58 -05002FROM ${base.image.name}:${project.version}
Timoney, Dan (dt5972)e14a0202018-06-22 17:05:16 -04003MAINTAINER CCSDK Team (onap-ccsdk@lists.onap.org)
Timoney, Dan (dt5972)b1ac7252018-12-14 13:00:43 -05004ENV JAVA_HOME /usr/lib/jvm/java-1.8-openjdk
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
Alexis de Talhouët268c5e12018-09-12 15:27:33 -04009ENV CCSDK_FEATURES_REPO mvn:org.onap.ccsdk.features/ccsdk-features-all/${ccsdk.features.version}/xml/features
Timoney, Dan (dt5972)e14a0202018-06-22 17:05:16 -040010ENV CCSDK_SLI_NORTHBOUND_REPO mvn:org.onap.ccsdk.sli.northbound/ccsdk-sli-northbound-all/${ccsdk.sli.northbound.version}/xml/features
11ENV 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 -040012ENV ANSIBLE_GPG_KEY ${ansible.gpg.key}
Timoney, Dan (dt5972)aa9d8252019-02-04 18:02:21 -050013ENV ODL_BOOT_FEATURES_EXTRA ${odl.boot.features.extra}
Timoney, Dan (dt5972)be94cc12018-07-02 18:02:35 -040014
Dan Timoney74e4e8d2017-08-22 11:51:54 -040015# copy the opendaylight credentials
Timoney, Dan (dt5972)e14a0202018-06-22 17:05:16 -040016COPY idmlight.db.mv.db $ODL_HOME/data
17
18
19# copy CCSDK mvn artifacts to ODL repository
20COPY system /tmp/system
21RUN rsync -a /tmp/system $ODL_HOME && rm -rf /tmp/system
22
23# Add CCSDK repositories to boot repositories
24RUN cp $ODL_HOME/etc/org.apache.karaf.features.cfg $ODL_HOME/etc/org.apache.karaf.features.cfg.orig
Timoney, Dan (dt5972)aa9d8252019-02-04 18:02:21 -050025RUN sed -i -e "\|featuresRepositories|s|$|, ${CCSDK_SLI_CORE_REPO}, ${CCSDK_SLI_ADAPTORS_REPO}, ${CCSDK_SLI_NORTHBOUND_REPO}, ${CCSDK_SLI_PLUGINS_REPO}, ${CCSDK_FEATURES_REPO}|" $ODL_HOME/etc/org.apache.karaf.features.cfg
26RUN sed -i -e "\|featuresBoot[^a-zA-Z]|s|$|,${ODL_BOOT_FEATURES_EXTRA}|" $ODL_HOME/etc/org.apache.karaf.features.cfg
Timoney, Dan (dt5972)e14a0202018-06-22 17:05:16 -040027
28# Create odl user
Timoney, Dan (dt5972)b1ac7252018-12-14 13:00:43 -050029RUN adduser -S odl
Timoney, Dan (dt5972)e14a0202018-06-22 17:05:16 -040030
Timoney, Dan (dt5972)be94cc12018-07-02 18:02:35 -040031# Install ansible
Timoney, Dan (dt5972)ea565422018-07-06 10:25:44 -040032#COPY ansible-sources.list /etc/apt/sources.list.d
33#RUN gpg --keyserver hkp://keyserver.ubuntu.com:80 --recv ${ANSIBLE_GPG_KEY} && \
34# gpg --export --armor ${ANSIBLE_GPG_KEY} | apt-key add - && \
Timoney, Dan (dt5972)b1ac7252018-12-14 13:00:43 -050035# apk update && \
36# apk add -y ansible
Alexis de Talhouët268c5e12018-09-12 15:27:33 -040037
38# Install ansible-opendaylight
Timoney, Dan (dt5972)ea565422018-07-06 10:25:44 -040039#RUN ansible-galaxy install git+https://git.opendaylight.org/gerrit/integration/packaging/ansible-opendaylight
Timoney, Dan (dt5972)e14a0202018-06-22 17:05:16 -040040
41# Copy ccsdk install playbook
Timoney, Dan (dt5972)ea565422018-07-06 10:25:44 -040042#COPY install_ccsdk.yml /tmp
Timoney, Dan (dt5972)e14a0202018-06-22 17:05:16 -040043
44# Install features in ODL
Timoney, Dan (dt5972)ea565422018-07-06 10:25:44 -040045#RUN ansible-playbook -i "localhost," -c local /tmp/install_ccsdk.yml
Timoney, Dan (dt5972)e14a0202018-06-22 17:05:16 -040046
Dan Timoney471dafa2017-08-21 14:44:05 -040047
Dan Timoney74e4e8d2017-08-22 11:51:54 -040048# copy deliverables to opt
Dan Timoney471dafa2017-08-21 14:44:05 -040049COPY opt /opt
Timoney, Dan (dt5972)e14a0202018-06-22 17:05:16 -040050COPY org.ops4j.pax.logging.cfg /opt/opendaylight/etc/org.ops4j.pax.logging.cfg
Dan Timoney471dafa2017-08-21 14:44:05 -040051
Marcus G K Williamsdc299ed2017-09-14 15:15:45 -070052
Timoney, Dan (dt5972)e14a0202018-06-22 17:05:16 -040053ENTRYPOINT /opt/onap/ccsdk/bin/startODL.sh
Dan Timoney471dafa2017-08-21 14:44:05 -040054EXPOSE 8181