🧱 QD-13151 Switch to DHI images #14
Annotations
1 error
|
Build and push
buildx bake failed with: ERROR: target dotnet: failed to solve: process "/bin/sh -c bash <<-\"EOF\"\n set -euxo pipefail\n\n rm -f /etc/apt/apt.conf.d/docker-clean\n mkdir -m 777 -p \"${QODANA_DATA}\" \"${QODANA_CONF}\"\n\n apt-get update\n apt-get install -y --no-install-recommends \\\n ca-certificates \\\n curl \\\n fontconfig \\\n default-jre \\\n gawk \\\n git \\\n git-lfs \\\n gnupg2 \\\n locales \\\n procps\n\n echo 'en_US.UTF-8 UTF-8' > /etc/locale.gen\n locale-gen\n update-ca-certificates\n\n echo 'root:x:0:0:root:/root:/bin/bash' > /etc/passwd\n chmod 666 /etc/passwd\n\n git config --global --add safe.directory '*'\n\n # Install .NET SDKs ------------------------------------------------------------------------------------------------\n # System dependencies (see https://learn.microsoft.com/en-gb/dotnet/core/install/linux-debian?tabs=dotnet10#dependencies)\n apt-get install -y --no-install-recommends \\\n libc6 \\\n libgcc-s1 \\\n libgssapi-krb5-2 \\\n libicu76 \\\n libssl3 \\\n libstdc++6 \\\n zlib1g\n\n # Download and verify install script\n dotnet_install_sh_url=\"https://raw.githubusercontent.com/dotnet/install-scripts/$DOTNET_INSTALL_SH_REVISION/src/dotnet-install.sh\"\n curl -L \"$dotnet_install_sh_url\" -o /tmp/dotnet-install.sh\n actual_sha256=$(sha256sum /tmp/dotnet-install.sh | cut -d ' ' -f1)\n if [ \"$DOTNET_INSTALL_SH_SHA256\" != \"$actual_sha256\" ]; then\n echo \"SHA 256 did not match for $dotnet_install_sh_url\"\n echo \" expected: $DOTNET_INSTALL_SH_SHA256\"\n echo \" actual: $actual_sha256\"\n exit 1\n fi\n\n # Install .NET SDKs\n chmod +x /tmp/dotnet-install.sh\n for channel in $DOTNET_CHANNELS; do\n /tmp/dotnet-install.sh --channel $channel --install-dir \"$DOTNET_ROOT\"\n done\n\n # Verify that requested SDKs are installed and available\n installed_sdks=$(dotnet --list-sdks)\n for channel in $DOTNET_CHANNELS; do\n if ! grep -Eq \"^$channel\" <<< \"$installed_sdks\"; then\n echo \"Could not find requested channel $channel in the output of 'dotnet --list-sdks':\"\n echo \"$installed_sdks\"\n exit 1\n fi\n done\n\n # ------------------------------------------------------------------------------------------------------------------\n chmod 777 -R \"$DOTNET_ROOT\" \"$HOME\"\n\n # Cleanup\n apt-get autoremove --purge -y\nEOF" did not complete successfully: exit code: 77
|
Loading