vw_small

Hardened fork of Vaultwarden (https://github.com/dani-garcia/vaultwarden) with fewer features.
git clone https://git.philomathiclife.com/repos/vw_small
Log | Files | Refs | README

commit 670d8cb83a7e256c3b6acc143cb76ee81d65681c
parent b58bff1178ad27624a8b435f5b3c46209055e5d3
Author: Aiden McClelland <me@drbonez.dev>
Date:   Sat, 26 Sep 2020 14:02:47 -0600

add arm target to alpine container

Diffstat:
Mhooks/arches.sh | 5++++-
1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/hooks/arches.sh b/hooks/arches.sh @@ -21,5 +21,8 @@ esac if [[ "${DOCKER_TAG}" == *alpine ]]; then # The Alpine build currently only works for amd64. os_suffix=.alpine - arches=(amd64) + arches=( + amd64 + arm32v7 + ) fi