mirror of
https://github.com/ViViDboarder/bitwarden_rs.git
synced 2024-11-05 12:56:37 +00:00
15 lines
262 B
Plaintext
15 lines
262 B
Plaintext
|
#!/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
|