diff options
Diffstat (limited to 'extras/hs-test/docker')
-rw-r--r-- | extras/hs-test/docker/Dockerfile.nginx | 16 | ||||
-rw-r--r-- | extras/hs-test/docker/Dockerfile.vpp | 27 |
2 files changed, 43 insertions, 0 deletions
diff --git a/extras/hs-test/docker/Dockerfile.nginx b/extras/hs-test/docker/Dockerfile.nginx new file mode 100644 index 00000000000..930151fefef --- /dev/null +++ b/extras/hs-test/docker/Dockerfile.nginx @@ -0,0 +1,16 @@ +ARG UBUNTU_VERSION + +FROM ubuntu:${UBUNTU_VERSION} + +RUN apt-get update +RUN apt-get install -y nginx +RUN rm -rf /var/lib/apt/lists/* + +COPY vpp-data/lib/* /usr/lib/ +COPY resources/nginx/vcl.conf /vcl.conf +COPY resources/nginx/nginx.conf /nginx.conf + +ENV VCL_CONFIG=/vcl.conf +ENV LD_PRELOAD=/usr/lib/libvcl_ldpreload.so + +ENTRYPOINT ["nginx", "-c", "/nginx.conf"] 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"] |