# # This file was auto-generated by gen-all-dockerfiles.sh; do not modify manually. # # vnf-sdk-marketplace/target/Dockerfile # # 10-basebuild.txt FROM ubuntu:16.04 #RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selections RUN apt-get install -y RUN apt-get update --fix-missing -y RUN apt-get install wget -y WORKDIR /service ENV JAVA_VERSION_MAJOR=8 \ JAVA_VERSION_MINOR=111 \ JAVA_HOME=/usr/lib/jvm/default-jvm \ PATH=${PATH}:/usr/lib/jvm/default-jvm/bin/ RUN DEBIAN_FRONTEND=noninteractive apt-get -y dist-upgrade RUN DEBIAN_FRONTEND=noninteractive apt-get -y install python-software-properties RUN DEBIAN_FRONTEND=noninteractive apt-get -y install software-properties-common sudo RUN add-apt-repository ppa:openjdk-r/ppa -y && \ # update data from repositories apt-get update --fix-missing -y && \ # upgrade OS apt-get -y dist-upgrade && \ # Make info file about this build printf "Build of java:openjdk-8-jre-headless, date: %s\n" `date -u +"%Y-%m-%dT%H:%M:%SZ"` > /service/java && \ # install application apt-get install -y --no-install-recommends openjdk-8-jre-headless && \ # fix default setting ln -s java-8-openjdk-amd64 /usr/lib/jvm/default-jvm && \ # remove apt cache from image apt-get clean all # Set up tomcat RUN wget -q https://archive.apache.org/dist/tomcat/tomcat-8/v8.5.30/bin/apache-tomcat-8.5.30.tar.gz && tar --strip-components=1 -xf apache-tomcat-8.5.30.tar.gz && rm -f apache-tomcat-8.5.30.tar.gz && rm -rf webapps && mkdir -p webapps/ROOT RUN echo 'export CATALINA_OPTS="$CATALINA_OPTS -Xms64m -Xmx256m -XX:MaxPermSize=64m"' > /service/bin/setenv.sh ENV CATALINA_HOME /service # Set up microservice #ADD ./STAGE /service #RUN apt-get install -y g++ make && curl -sL https://rpm.nodesource.com/setup_6.x | bash - #RUN apt-get install -y nodejs #RUN apt-get install -y npm #RUN cd /service/webapps/onapui/vnfmarket && npm install phantomjs-prebuilt@2.1.14 --ignore-scripts && npm install RUN add-apt-repository -y ppa:nginx/stable && \ apt-get update && \ apt-get install -y nginx && \ rm -rf /var/lib/apt/lists/* && \ echo "\ndaemon off;" >> /etc/nginx/nginx.conf && \ chown -R www-data:www-data /var/lib/nginx # Define mountable directories. VOLUME ["/etc/nginx/sites-enabled", "/etc/nginx/certs", "/etc/nginx/conf.d", "/var/log/nginx", "/var/www/html"] # Define working directory. WORKDIR /etc/nginx #CMD ["nginx"] EXPOSE 8702 EXPOSE 8703 WORKDIR /service RUN mkdir -p /etc/nginx/ssl COPY nginx.conf /etc/nginx/nginx.conf COPY certgen.sh /service RUN chmod +x /service/certgen.sh RUN /service/certgen.sh RUN apt-get update && apt-get install nano -y RUN apt-get install curl -y #RUN apt-get install vim -y COPY instance-config.sh . COPY instance-init.sh . COPY instance-run.sh . COPY instance-workaround.sh . COPY docker-entrypoint.sh . COPY install-vtp.sh . COPY vtp-tc.sh . # Set up microservice ADD ./STAGE /service RUN apt-get install -y g++ make && curl -sL https://rpm.nodesource.com/setup_6.x RUN apt-get install -y nodejs RUN apt-get install -y npm RUN apt-get -qq update && apt-get -qq -y install bzip2 RUN chmod +x /service/bin/*.sh RUN service nginx start & RUN cd /service/webapps/onapui/vnfmarket && npm install phantomjs-prebuilt@2.1.14 --ignore-scripts && npm install #VTP setup RUN chmod a+x /service/install-vtp.sh RUN chmod a+x /service/vtp-tc.sh RUN /service/install-vtp.sh EXPOSE 50051 ENTRYPOINT /service/docker-entrypoint.sh RUN chmod a+x /service/docker-entrypoint.sh ENTRYPOINT ["/service/docker-entrypoint.sh"] COPY LICENSE ./ONAP_LICENSE