We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4e82270 commit e61ef06Copy full SHA for e61ef06
1 file changed
dockerbuild.sh
@@ -40,6 +40,11 @@ mkdir -p nuget.package/runtimes/$RID/native
40
if [[ $RID == linux-musl* ]]; then
41
build_in_container "$RID" "Dockerfile.linux-musl" "" ""
42
extract_runtimes "$RID"
43
+elif [[ $RID == linux-ppc64le ]]; then
44
+ # debian:bullseye-slim has no ppc64le manifest, so we skip the openssl1.1
45
+ # variant on this arch and ship only the default OpenSSL 3 build.
46
+ build_in_container "$RID" "Dockerfile.linux" "" ""
47
+ extract_runtimes "$RID"
48
else
49
# All glibc-based Linux RIDs get two variants:
50
# 1. Default: built on bookworm against OpenSSL 3, libssh2 bundled as a separate .so
0 commit comments