Skip to content

Commit d6ece8d

Browse files
committed
feat: support platform arg in docker build script
Signed-off-by: Sebastian Davids <[email protected]>
1 parent f221530 commit d6ece8d

File tree

2 files changed

+43
-11
lines changed

2 files changed

+43
-11
lines changed

docs/user-guide/modules/ROOT/pages/scripts/docker/docker-build.adoc

+13
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ The following parameters are supported:
99

1010
`d` :: the path to the https://docs.docker.com/reference/cli/docker/image/build/#file[Dockerfile] (`$PWD/Dockerfile` if not given) to be used
1111
`n` :: do not use the cache when building the image
12+
`p` :: the https://docs.docker.com/reference/cli/docker/buildx/build/#platform[target platform] for the build (if not given the platform of the BuildKit daemon where the build runs is used)
1213
`t` :: one of the two image's https://docs.docker.com/engine/reference/commandline/image_build/#tag[tags] (`local` if not given);
1314
the image will always be tagged with `latest`
1415

@@ -58,6 +59,13 @@ $ SOURCE_DATE_EPOCH=0 scripts/docker/docker_build.sh -d scripts/docker/Dockerfil
5859
...
5960
"org.opencontainers.image.revision":"46cca5eff61eabb008ed43e81988e6a9099aa469-next"
6061
...
62+
63+
$ scripts/docker/docker_build.sh -d scripts/docker/Dockerfile -t amd -p linux/amd64
64+
$ docker inspect --format='{{.Os}}/{{.Architecture}}' de.sdavids/sdavids-shell-misc:amd
65+
linux/amd64
66+
$ scripts/docker/docker_build.sh -d scripts/docker/Dockerfile -t arm -p linux/arm64
67+
$ docker inspect --format='{{.Os}}/{{.Architecture}}' de.sdavids/sdavids-shell-misc:arm
68+
linux/arm64
6169
----
6270

6371
== Prerequisites
@@ -69,3 +77,8 @@ $ SOURCE_DATE_EPOCH=0 scripts/docker/docker_build.sh -d scripts/docker/Dockerfil
6977
* xref:scripts/docker/docker-start.adoc[]
7078
* xref:scripts/docker/docker-remove.adoc[]
7179
* xref:scripts/docker/docker-cleanup.adoc[]
80+
81+
== More Information
82+
83+
* https://docs.docker.com/reference/cli/docker/buildx/build/#platform[Docker build - platform]
84+
* https://docs.docker.com/reference/cli/docker/buildx/build/#tag[Docker build - tag]

scripts/docker/docker_build.sh

+30-11
Original file line numberDiff line numberDiff line change
@@ -5,19 +5,22 @@
55

66
set -Eeu -o pipefail -o posix
77

8-
while getopts ':d:nt:' opt; do
8+
while getopts ':d:np:t:' opt; do
99
case "${opt}" in
1010
d)
1111
dockerfile="${OPTARG}"
1212
;;
1313
n)
1414
no_cache='--pull --no-cache'
1515
;;
16+
p)
17+
platform="${OPTARG}"
18+
;;
1619
t)
1720
tag="${OPTARG}"
1821
;;
1922
?)
20-
echo "Usage: $0 [-d Dockerfile] [-n] [-t tag]" >&2
23+
echo "Usage: $0 [-d Dockerfile] [-n] [-p platform] [-t tag]" >&2
2124
exit 1
2225
;;
2326
esac
@@ -27,6 +30,9 @@ readonly dockerfile="${dockerfile:-$PWD/Dockerfile}"
2730

2831
readonly no_cache="${no_cache:-}"
2932

33+
# https://docs.docker.com/reference/cli/docker/buildx/build/#platform
34+
readonly platform="${platform:-}"
35+
3036
readonly tag="${tag:-local}"
3137

3238
if [ ! -f "${dockerfile}" ]; then
@@ -98,15 +104,28 @@ readonly commit
98104

99105
# https://github.com/opencontainers/image-spec/blob/master/annotations.md
100106
# shellcheck disable=SC2086
101-
docker image build \
102-
${no_cache} \
103-
--file "${dockerfile}" \
104-
--tag "${image_name}:latest" \
105-
--tag "${image_name}:${tag}" \
106-
--label "${label_group}=${repository}" \
107-
--label "org.opencontainers.image.revision=${commit}" \
108-
--label "org.opencontainers.image.created=${created_at}" \
109-
.
107+
if [ -n "${platform}" ]; then
108+
docker image build \
109+
${no_cache} \
110+
--file "${dockerfile}" \
111+
--platform="${platform}" \
112+
--tag "${image_name}:latest" \
113+
--tag "${image_name}:${tag}" \
114+
--label "${label_group}=${repository}" \
115+
--label "org.opencontainers.image.revision=${commit}" \
116+
--label "org.opencontainers.image.created=${created_at}" \
117+
.
118+
else
119+
docker image build \
120+
${no_cache} \
121+
--file "${dockerfile}" \
122+
--tag "${image_name}:latest" \
123+
--tag "${image_name}:${tag}" \
124+
--label "${label_group}=${repository}" \
125+
--label "org.opencontainers.image.revision=${commit}" \
126+
--label "org.opencontainers.image.created=${created_at}" \
127+
.
128+
fi
110129

111130
echo
112131

0 commit comments

Comments
 (0)