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 dba626c commit 38b4966Copy full SHA for 38b4966
1 file changed
dockerbuild.sh
@@ -3,7 +3,7 @@
3
set -e
4
echo "building for $RID"
5
6
-alpineVersion=3.15
+alpineVersion=3.13
7
8
if [[ $RID =~ arm64 ]]; then
9
arch="arm64"
@@ -25,7 +25,7 @@ else
25
fi
26
27
docker run --privileged --rm tonistiigi/binfmt --install all
28
-docker buildx build --platform linux/$arch -t $RID -f $dockerfile --build-arg ALPINE_VERSION=$alpineVersion .
+docker build --no-cache --platform linux/$arch -t $RID -f $dockerfile --build-arg ALPINE_VERSION=$alpineVersion .
29
30
docker run -t --platform linux/$arch -e RID=$RID --name=$RID $RID
31
0 commit comments