Unverified Commit d22b168e authored by Birte Kristina Friesel's avatar Birte Kristina Friesel
Browse files

provide multi-platform docker images

parent 4a0234fa
Loading
Loading
Loading
Loading

scripts/publish-docker

0 → 100755
+13 −0
Original line number Diff line number Diff line
#!/bin/sh

set -e

VERSION="$1"
test -n "${VERSION}"

git checkout main
git pull
git checkout "${VERSION}"
git submodule update --init

docker buildx build --push --no-cache --platform linux/amd64,linux/arm64 --tag derfnull/efa:${VERSION} --tag derfnull/efa:latest --build-arg=dbf_version=${VERSION} .