1
0
mirror of https://github.com/dani-garcia/vaultwarden.git synced 2024-09-20 01:11:32 +02:00
Vaultwarden/hooks/build
2020-07-15 20:03:34 -07:00

15 lines
262 B
Bash
Executable File

#!/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