-
Notifications
You must be signed in to change notification settings - Fork 106
/
Copy pathbuild-docker-images
executable file
·57 lines (47 loc) · 1.4 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
#!/bin/bash
set -euo pipefail
SCRIPTPATH="$( cd "$(dirname "$0")" ; pwd -P )"
REPO_ROOT_PATH=$SCRIPTPATH/../
MAKE_FILE_PATH=$REPO_ROOT_PATH/Makefile
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 "dp: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)
img_tag="$IMAGE_REPO:$VERSION-$os-$arch"
docker build \
--build-arg GOOS=${os} \
--build-arg GOARCH=${arch} \
--build-arg GOPROXY=${GOPROXY} \
-t ${img_tag} \
${REPO_ROOT_PATH}
done