|
1 | 1 | #!/bin/bash
|
2 | 2 |
|
3 |
| -BUILD_ENV_IMAGE_NAME="contiv-netplugin-build" |
4 |
| -TEMPORARY_CONTAINER_NAME="contiv-netplugin-build-temporary" |
5 |
| -FINAL_IMAGE_NAME="contivbase" |
| 3 | +set -euo pipefail |
6 | 4 |
|
| 5 | +REPOSITORY="contivbase" |
7 | 6 | NETPLUGIN_BINARIES="netplugin netmaster netctl contivk8s"
|
| 7 | +IMAGE=$REPOSITORY:${NETPLUGIN_CONTAINER_TAG} |
8 | 8 |
|
9 | 9 | function get_image_id() {
|
10 |
| - docker inspect --format '{{.ID}}' $1 |
11 |
| - return $? |
| 10 | + docker inspect --format '{{.ID}}' $IMAGE || : |
12 | 11 | }
|
13 | 12 |
|
14 |
| -function build_image_from_path() { |
15 |
| - set +e |
16 |
| - old_image=$(get_image_id $2) |
17 |
| - set -e |
18 |
| - if [ "$?" -ne 0 ]; then |
19 |
| - old_image= |
20 |
| - fi |
21 |
| - |
22 |
| - echo "Building image $2 from $1 ..." |
23 |
| - docker build -t $2 --force-rm $1 |
24 |
| - if [ "$?" -ne 0 ]; then |
25 |
| - echo "Image $2 was not built properly" |
26 |
| - return 1 |
27 |
| - fi |
28 |
| - |
29 |
| - new_image=$(get_image_id $2) |
30 |
| - if [ "$old_image" != "" ] && [ "$old_image" != "$new_image" ]; then |
31 |
| - docker rmi $old_image >/dev/null 2>&1 || true |
32 |
| - fi |
33 |
| - |
34 |
| - echo "Image $2 has been built" |
35 |
| - return 0 |
36 |
| -} |
37 |
| - |
38 |
| -set -x |
39 |
| -set -e |
40 |
| - |
41 |
| -# ensure this script wasn't called from the directory where this script |
42 |
| -# lives; it should be called from the repository's top level |
43 |
| -script_dir="$(dirname -- "$0")" |
44 |
| -if [ "$script_dir" == "." ]; then |
45 |
| - echo "This script must be called from the top level of the repository" |
46 |
| - exit 1 |
47 |
| -fi |
48 |
| - |
49 | 13 | rm -rf scripts/netContain/bin
|
50 | 14 | mkdir scripts/netContain/bin
|
51 | 15 |
|
52 |
| -build_image_from_path . $BUILD_ENV_IMAGE_NAME |
53 |
| -if [ "$?" -ne 0 ]; then |
54 |
| - echo "Failed to build the " |
55 |
| - exit 1 |
56 |
| -fi |
| 16 | +# it's expected that makefile targets compile-with-docker and |
| 17 | +# binaries-from-container have already been run |
| 18 | +tar c -C bin $NETPLUGIN_BINARIES | tar x -C scripts/netcontain/bin |
57 | 19 |
|
58 |
| -docker run --name=$TEMPORARY_CONTAINER_NAME $BUILD_ENV_IMAGE_NAME || true |
| 20 | +old_image=$(get_image_id) |
59 | 21 |
|
60 |
| -echo "Copying the Contiv binaries..." |
61 |
| -for f in $NETPLUGIN_BINARIES; do |
62 |
| - docker cp $TEMPORARY_CONTAINER_NAME:/go/bin/$f scripts/netContain/bin/ |
63 |
| -done |
| 22 | +cd scripts/netContain |
64 | 23 |
|
65 |
| -docker rm -fv $TEMPORARY_CONTAINER_NAME |
| 24 | +docker build -t $IMAGE . |
66 | 25 |
|
67 |
| -echo "Building the final Docker image..." |
68 |
| -build_image_from_path scripts/netContain contivbase |
69 |
| -if [ "$?" -ne 0 ]; then |
70 |
| - echo "Failed to build the final Docker image" |
71 |
| - exit 1 |
72 |
| -fi |
| 26 | +new_image=$(get_image_id) |
73 | 27 |
|
74 |
| -rm -rf scripts/netContain/bin |
| 28 | +if [ "$old_image" != "" ] && [ "$old_image" != "$new_image" ]; then |
| 29 | + echo Removing old image $old_image |
| 30 | + docker rmi $old_image >/dev/null 2>&1 || true |
| 31 | +fi |
0 commit comments