diff options
author | Christopher Lott (cl778h) <clott@research.att.com> | 2017-10-11 14:45:00 -0400 |
---|---|---|
committer | Christopher Lott (cl778h) <clott@research.att.com> | 2017-10-11 14:45:59 -0400 |
commit | c83b7cb5a63e280bc4ca81b9fe20917a7029ef39 (patch) | |
tree | 0820af5c0686ce21516004b1beceb0902c23b9fd /deliveries/Dockerfile.portalapps | |
parent | ec4eb9c7b9bed3bd5cc01ea127632d637b738cbc (diff) |
Drop DMaaP BC web GUI from Portal deployment
DMaaP BC is not in Amsterdam release; no need for its GUI.
Issue: PORTAL-126
Change-Id: I156e729ace41962fb9d3941deb2478357ea4616a
Signed-off-by: Christopher Lott (cl778h) <clott@research.att.com>
Diffstat (limited to 'deliveries/Dockerfile.portalapps')
-rw-r--r-- | deliveries/Dockerfile.portalapps | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/deliveries/Dockerfile.portalapps b/deliveries/Dockerfile.portalapps index b1bf88c5..f1526597 100644 --- a/deliveries/Dockerfile.portalapps +++ b/deliveries/Dockerfile.portalapps @@ -1,5 +1,5 @@ # Dockerfile for image with ONAP applications: -# Portal app, Portal-SDK app, Portal-DBC app. +# Portal app, Portal-SDK app. # Yields an image 823 MB FROM frolvlad/alpine-oraclejdk8:slim @@ -11,7 +11,6 @@ FROM frolvlad/alpine-oraclejdk8:slim ARG PORTAL_WAR=build/ecompportal-be-os.war ARG FE_DIR=build/public ARG SDK_WAR=build/epsdk-app-os.war -ARG DBC_WAR=build/dmaap-bc-app-os.war ARG HTTP_PROXY ARG HTTPS_PROXY @@ -36,7 +35,7 @@ RUN mkdir -p /opt RUN mv ${TOMCAT} /opt WORKDIR ${TOMCATHOME}/webapps -RUN mkdir ECOMPPORTAL && mkdir ECOMPSDKAPP && mkdir ECOMPDBCAPP +RUN mkdir ECOMPPORTAL && mkdir ECOMPSDKAPP # Portal has many parts COPY $PORTAL_WAR ECOMPPORTAL @@ -47,10 +46,6 @@ COPY ${FE_DIR} ECOMPPORTAL/public COPY $SDK_WAR ECOMPSDKAPP RUN cd ECOMPSDKAPP && unzip -q *.war && rm *.war -# DBC app has only a war -COPY $DBC_WAR ECOMPDBCAPP -RUN cd ECOMPDBCAPP && unzip -q *.war && rm *.war - VOLUME ${TOMCATHOME}/logs # Switch back to root |