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.
15 lines
262 B
15 lines
262 B
5 years ago
|
#!/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}/${db}/Dockerfile${os_suffix} \
|
||
|
.
|
||
|
done
|