We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b360b8f commit 0a20fa9Copy full SHA for 0a20fa9
1 file changed
dockerbuild.sh
@@ -3,8 +3,7 @@
3
set -e
4
echo "building for $RID"
5
6
-alpineVersion=3.20
7
-uname -a
+alpineVersion=3.13
8
9
if [[ $RID =~ arm64 ]]; then
10
arch="arm64"
@@ -25,6 +24,7 @@ else
25
24
dockerfile="docker/linux"
26
fi
27
+docker run --privileged --rm tonistiigi/binfmt --uninstall qemu-aarch64 qemu-arm 2>/dev/null || true
28
docker run --privileged --rm tonistiigi/binfmt --install all
29
docker build --no-cache --platform linux/$arch -t $RID -f $dockerfile --build-arg ALPINE_VERSION=$alpineVersion .
30
0 commit comments