custom onos apps
Change-Id: I8533a5d5981ab22119de3610017e6a2ed7e8d563
diff --git a/docker/Dockerfile.onos b/docker/Dockerfile.onos
index 3c5a807..eab9368 100644
--- a/docker/Dockerfile.onos
+++ b/docker/Dockerfile.onos
@@ -7,13 +7,11 @@
ENV APPS=/root/onos/apps ONOS=/root/onos KARAF_M2=/root/onos/apache-karaf-3.0.5/system VERSION=1.2-SNAPSHOT
ENV AUX=$APPS/aux
-RUN apt-get update && apt-get install -y git maven unzip && \
- git config --global http.sslverify false && \
- git clone http://gerrit.opencord.org/olt && \
- git clone http://gerrit.opencord.org/aaa && \
- git clone http://gerrit.opencord.org/config
+RUN apt-get update && apt-get install -y git maven unzip
+RUN git config --global http.sslverify false && \
+ git clone https://alshabibi@bitbucket.org/alshabibi/onos-apps.git
-RUN cd $ONOS/olt && mvn clean install && cd $ONOS/config && mvn clean install && cd $ONOS/aaa && mvn clean install
+RUN cd $ONOS/onos-apps/apps && mvn clean install
WORKDIR $ONOS
@@ -21,4 +19,9 @@
RUN sh $ONOS/app-install.sh
+# Disabling vtn,mcast and igmp
+RUN rm $ONOS/apps/org.opencord.mcast/active &&\
+ rm $ONOS/apps/org.opencord.igmp/active &&\
+ rm $ONOS/apps/org.opencord.vtn/active
+
COPY config/netcfg.json $KARAF_ROOT/../config/network-cfg.json