You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
echo ">>> Building images..."
|
|
|
|
|
|
|
|
source ./hooks/arches.sh
|
|
|
|
|
|
|
|
set -ex
|
|
|
|
|
|
|
|
for arch in "${arches[@]}"; do
|
|
|
|
docker build \
|
|
|
|
-t "${DOCKER_REPO}:${DOCKER_TAG}-${arch}" \
|
|
|
|
-f docker/${arch}/Dockerfile${distro_suffix} \
|
|
|
|
.
|
|
|
|
done
|