0
0
Fork 0
mirror of https://github.com/dani-garcia/vaultwarden synced 2024-05-17 04:13:49 +02:00
bitwarden_rs/hooks/build

15 lines
256 B
Plaintext
Raw Normal View History

2020-06-10 11:01:41 +02:00
#!/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${os_suffix} \
2020-06-10 11:01:41 +02:00
.
done