diff options
author | Filip Tehlar <ftehlar@cisco.com> | 2023-01-16 10:21:29 +0100 |
---|---|---|
committer | Florin Coras <florin.coras@gmail.com> | 2023-01-16 20:51:09 +0000 |
commit | f34f32f31925cba0ed8ef034184e0de1c7398487 (patch) | |
tree | 36695e68a76b240f70914dd3a3100971c7a3c2b5 /extras/hs-test/docker/Dockerfile.vpp | |
parent | 3f951433b89df4639bb2ae8f297aee90c70cebf5 (diff) |
hs-test: better directory structure
Move config files to resources and docker files to separate directory
Type: test
Signed-off-by: Filip Tehlar <ftehlar@cisco.com>
Change-Id: I24dd0705c4a463c06de525f28cb54d882527320a
Diffstat (limited to 'extras/hs-test/docker/Dockerfile.vpp')
-rw-r--r-- | extras/hs-test/docker/Dockerfile.vpp | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/extras/hs-test/docker/Dockerfile.vpp b/extras/hs-test/docker/Dockerfile.vpp new file mode 100644 index 00000000000..f95df2277c9 --- /dev/null +++ b/extras/hs-test/docker/Dockerfile.vpp @@ -0,0 +1,27 @@ +ARG UBUNTU_VERSION + +FROM ubuntu:${UBUNTU_VERSION} + +RUN apt-get update \ + && apt-get install -y openssl libapr1 libnuma1 libsubunit0 \ + iproute2 libnl-3-dev libnl-route-3-dev python3 iputils-ping \ + vim gdb \ + && rm -rf /var/lib/apt/lists/* + +ENV DIR=vpp-data/lib/vpp_plugins +COPY \ + $DIR/af_packet_plugin.so \ + $DIR/hs_apps_plugin.so \ + $DIR/http_plugin.so \ + $DIR/unittest_plugin.so \ + $DIR/quic_plugin.so \ + /usr/lib/x86_64-linux-gnu/vpp_plugins/ + +COPY vpp-data/bin/* /usr/bin/ +COPY vpp-data/lib/* /usr/lib/ + +COPY hs-test /usr/local/bin/hs-test + +RUN addgroup vpp + +ENTRYPOINT ["tail", "-f", "/dev/null"] |