-
Notifications
You must be signed in to change notification settings - Fork 271
/
Copy pathbuild-docker-images
executable file
·78 lines (68 loc) · 2.27 KB
/
build-docker-images
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
#!/bin/bash
set -euo pipefail
SCRIPTPATH="$( cd "$(dirname "$0")" ; pwd -P )"
REPO_ROOT_PATH=$SCRIPTPATH/../
MAKE_FILE_PATH=$REPO_ROOT_PATH/Makefile
DOCKERFILE_PATH=$REPO_ROOT_PATH/Dockerfile
VERSION=$(make -s -f $MAKE_FILE_PATH version)
PLATFORMS=("linux/amd64")
GOPROXY="direct|https://proxy.golang.org"
USAGE=$(cat << 'EOM'
Usage: build-docker-images [-p <platform pairs>]
Builds docker images for the platform pair
Example: build-docker-images -p "linux/amd64,linux/arm"
Optional:
-p Platform pair list (os/architecture) [DEFAULT: linux/amd64]
-r IMAGE REPO: set the docker image repo
-v VERSION: The application version of the docker image [DEFAULT: output of `make version`]
EOM
)
# Process our input arguments
while getopts "p:r:v:" opt; do
case ${opt} in
p ) # Platform Pairs
IFS=',' read -ra PLATFORMS <<< "$OPTARG"
;;
r ) # Image Repo
IMAGE_REPO="$OPTARG"
;;
v ) # Image Version
VERSION="$OPTARG"
;;
\? )
echo "$USAGE" 1>&2
exit
;;
esac
done
for os_arch in "${PLATFORMS[@]}"; do
os=$(echo $os_arch | cut -d'/' -f1)
arch=$(echo $os_arch | cut -d'/' -f2)
dockerfile="$DOCKERFILE_PATH"
if [[ $os == "windows"* ]]; then
windows_version=$(echo $os | cut -d'-' -f2)
os=$(echo $os | cut -d'-' -f1)
img_tag="$IMAGE_REPO:$VERSION-$os-$windows_version-$arch"
dockerfile="${dockerfile}.windows"
docker build \
--file "${dockerfile}" \
--build-arg GOOS=${os} \
--build-arg GOARCH=${arch} \
--build-arg WINDOWS_VERSION=${windows_version} \
--build-arg GOPROXY=${GOPROXY} \
--tag ${img_tag} \
${REPO_ROOT_PATH}
else
# Launch a docker buildx instance and save its name so we can terminate it later
img_tag="$IMAGE_REPO:$VERSION-$os-$arch"
buildx_instance_name=$(docker buildx create --use)
docker buildx build \
--load \
--file "${dockerfile}" \
--build-arg GOPROXY=${GOPROXY} \
--tag ${img_tag} \
--platform "${os_arch}" \
${REPO_ROOT_PATH}
docker buildx rm ${buildx_instance_name}
fi
done