We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 03777ab + 6a4c643 commit d2d85c5Copy full SHA for d2d85c5
1 file changed
ci/create_appimage.sh
@@ -40,7 +40,7 @@ case "$ARCH" in
40
;;
41
"aarch64" | "arm64")
42
DOTNET_ARCH="arm64"
43
- DOCKER_ARCH="arm64v8"
+ DOCKER_ARCH="arm64/v8"
44
45
*)
46
fail_msg "Unknown arch! Aborting!"
@@ -52,12 +52,12 @@ esac
52
53
54
# now just run script in appropriate container to generate bundle
55
-docker run --rm \
+docker run --platform linux/$DOCKER_ARCH --rm \
56
-e ARCH="$ARCH" \
57
-e PUBLISH_DIR="/PublishDir" \
58
-e OUTPUT_DIR="/OutputDir" \
59
-v "$REPO_ROOT":/repo \
60
-v "$PUBLISH_DIR":/PublishDir \
61
-v "$OUTPUT_DIR":/OutputDir \
62
- -t $DOCKER_ARCH/ubuntu:jammy \
+ -t ubuntu:jammy \
63
/bin/bash -xc "/repo/ci/bundle_appimage.sh"
0 commit comments