diff options
author | Maros Ondrejicka <maros.ondrejicka@pantheon.tech> | 2023-01-13 10:09:14 +0100 |
---|---|---|
committer | Florin Coras <florin.coras@gmail.com> | 2023-01-13 19:54:01 +0000 |
commit | 8851ccfe4aac8d021e2a813a8a25c13b3ae61853 (patch) | |
tree | c2f21bdd8d649d7220097149034a143b00ad70e7 /extras/hs-test/script | |
parent | 609d8e9186a854891e202b32106aab9d530778d0 (diff) |
hs-test: use equal ubuntu versions in test images
Official nginx image is based on Debian with older libc version,
that causes a runtime fail when VPP libraries are compiled in Ubuntu
which has newer libc.
Using equal version of Ubuntu in VPP image and in nginx image
ensures that running nginx won't fail due to different libc versions.
Type: test
Signed-off-by: Maros Ondrejicka <maros.ondrejicka@pantheon.tech>
Change-Id: I48f3b23be30a9d9d9144351437ce163d64a4bb6b
Diffstat (limited to 'extras/hs-test/script')
-rwxr-xr-x | extras/hs-test/script/build.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/extras/hs-test/script/build.sh b/extras/hs-test/script/build.sh index b8962ec989e..5c51244cf9f 100755 --- a/extras/hs-test/script/build.sh +++ b/extras/hs-test/script/build.sh @@ -10,5 +10,5 @@ mkdir -p ${bin} ${lib} || true cp ${VPP_WS}/build-root/build-vpp_debug-native/vpp/bin/* ${bin} cp -r ${VPP_WS}/build-root/build-vpp_debug-native/vpp/lib/x86_64-linux-gnu/* ${lib} -docker build -t hs-test/vpp -f Dockerfile.vpp . -docker build -t hs-test/nginx-ldp -f Dockerfile.nginx . +docker build --build-arg UBUNTU_VERSION -t hs-test/vpp -f Dockerfile.vpp . +docker build --build-arg UBUNTU_VERSION -t hs-test/nginx-ldp -f Dockerfile.nginx . |