diff options
Diffstat (limited to 'extras/hs-test/script/build.sh')
-rwxr-xr-x | extras/hs-test/script/build.sh | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/extras/hs-test/script/build.sh b/extras/hs-test/script/build.sh new file mode 100755 index 00000000000..d80823b5859 --- /dev/null +++ b/extras/hs-test/script/build.sh @@ -0,0 +1,13 @@ +#!/usr/bin/env bash + +source vars + +bin=vpp-data/bin +lib=vpp-data/lib + +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 . |