diff options
author | Tetsuya Murakami <tetsuya.mrk@gmail.com> | 2019-11-06 11:05:51 -0800 |
---|---|---|
committer | Ole Trøan <otroan@employees.org> | 2019-11-19 07:02:40 +0000 |
commit | 1b81e6ef66cbce15ba1b05904732f92251d531cd (patch) | |
tree | 114135a6f83405d4883bcb37f1c362051944831a /src/plugins/srv6-mobile/extra/Dockerfile.j2.release | |
parent | 360b523b52a91bd0d1d7de1247141367c484d70f (diff) |
srv6-mobile
Type: feature
Plug-in for IPv6 Segment Routing Mobile
This funcion was developed by
Signed-off-by: Satoru Matsuchima <satoru.matsushima@gmail.com>
Signed-off-by: Filip Varga <filipvarga89@gmail.com>
Signed-off-by: Tetsuya Murakami <tetsuya.mrk@gmail.com>
Signed-off-by: Tetsuya Murakami <tetsuya.mrk@gmail.com>
Change-Id: Ie995adc73d8f8d444339aab71619c3599e69f12d
Signed-off-by: Tetsuya Murakami <tetsuya.mrk@gmail.com>
Diffstat (limited to 'src/plugins/srv6-mobile/extra/Dockerfile.j2.release')
-rw-r--r-- | src/plugins/srv6-mobile/extra/Dockerfile.j2.release | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/src/plugins/srv6-mobile/extra/Dockerfile.j2.release b/src/plugins/srv6-mobile/extra/Dockerfile.j2.release new file mode 100644 index 00000000000..851aef66197 --- /dev/null +++ b/src/plugins/srv6-mobile/extra/Dockerfile.j2.release @@ -0,0 +1,37 @@ + +FROM ubuntu:18.04 + +RUN set -eux; \ + apt-get update; \ + apt-get install -y --no-install-recommends \ + inetutils-traceroute \ + ca-certificates \ + libmbedcrypto1 \ + libmbedtls10 \ + libmbedx509-0 \ + libnuma1 \ + sudo \ + iputils-ping \ + net-tools \ + iproute2 \ + tcpdump \ + python3-cffi \ + netcat; \ + rm -rf /var/lib/apt/lists/*; \ + mv /usr/sbin/tcpdump /usr/bin/tcpdump + +WORKDIR /tmp + +COPY startup.conf /etc/startup.conf + +COPY vpp-package.tgz /tmp + +RUN set -eux; \ + tar xzf vpp-package.tgz; \ + dpkg -i *.deb ; \ + rm -rf *.deb + +WORKDIR / + +CMD vpp -c /etc/startup.conf + |