blob: 7d3e6ede1097a63d097f047a3fb8778760ce66e0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
FROM electrocucaracha/vpp
MAINTAINER Victor Morales <electrocucaracha@gmail.com>
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"]
|