Build AARCH64 Image

Update GitHub workflow so that it also builds AARCH64 image for 64bit
OSes used on RPi 3/4.
This commit is contained in:
Geoffrey Thomas
2021-12-30 19:38:08 -07:00
parent 7d52210d25
commit 35a16320cc

View File

@@ -13,7 +13,7 @@ set -e
app=${1}
registry=${2}
platform="linux/amd64,linux/arm/v7"
platform="linux/amd64,linux/arm/v7,linux/arm64/v8"
dockerfile=docker/${app}/Dockerfile
context=$(echo -n ${dockerfile} | rev | cut -f2- -d'/' | rev)