FROM electrocucaracha/vpp MAINTAINER Victor Morales ARG HTTP_PROXY=${HTTP_PROXY} ARG HTTPS_PROXY=${HTTPS_PROXY} ENV http_proxy $HTTP_PROXY ENV https_proxy $HTTPS_PROXY ENV repo_url "https://nexus.onap.org/content/repositories/staging/org/onap/demo/vnf" ENV protected_net_cidr "192.168.20.0/24" ENV fw_ipaddr "192.168.10.100" ENV sink_ipaddr "192.168.20.250" ENV demo_artifacts_version "1.3.0" RUN apt-get install -y -qq wget openjdk-8-jre bridge-utils net-tools \ bsdmainutils make gcc libcurl4-gnutls-dev WORKDIR /opt RUN wget "https://git.onap.org/demo/plain/vnfs/vFW/scripts/v_firewall_init.sh" \ && chmod +x v_firewall_init.sh \ && sed -i 's|start vpp|/usr/bin/vpp -c /etc/vpp/startup.conf|g' v_firewall_init.sh RUN wget "${repo_url}/sample-distribution/${demo_artifacts_version}/sample-distribution-${demo_artifacts_version}-hc.tar.gz" \ && tar -zmxf sample-distribution-${demo_artifacts_version}-hc.tar.gz \ && rm sample-distribution-${demo_artifacts_version}-hc.tar.gz \ && mv sample-distribution-${demo_artifacts_version} honeycomb \ && sed -i 's/"restconf-binding-address": "127.0.0.1",/"restconf-binding-address": "0.0.0.0",/g' /opt/honeycomb/config/honeycomb.json RUN wget "${repo_url}/ves5/ves/${demo_artifacts_version}/ves-${demo_artifacts_version}-demo.tar.gz" \ && tar -zmxf ves-${demo_artifacts_version}-demo.tar.gz \ && rm ves-${demo_artifacts_version}-demo.tar.gz \ && mv ves-${demo_artifacts_version} VES RUN wget "${repo_url}/ves5/ves_vfw_reporting/${demo_artifacts_version}/ves_vfw_reporting-${demo_artifacts_version}-demo.tar.gz" \ && tar -zmxf ves_vfw_reporting-${demo_artifacts_version}-demo.tar.gz \ && rm ves_vfw_reporting-${demo_artifacts_version}-demo.tar.gz \ && mv ves_vfw_reporting-${demo_artifacts_version} VES/evel/evel-library/code/VESreporting \ && chmod +x VES/evel/evel-library/code/VESreporting/go-client.sh \ && cd VES/evel/evel-library/bldjobs/ && make clean && make && cd - RUN mkdir -p /opt/config/ \ && echo $protected_net_cidr > /opt/config/protected_net_cidr.txt \ && echo $fw_ipaddr > /opt/config/fw_ipaddr.txt \ && echo $sink_ipaddr > /opt/config/sink_ipaddr.txt \ && echo $demo_artifacts_version > /opt/config/demo_artifacts_version.txt CMD ["./v_firewall_init.sh"]