From ff53dec2c271a88bf2bdaea8e6c7d6e67d09e55d Mon Sep 17 00:00:00 2001 From: copilotcoder Date: Wed, 22 Jul 2026 07:52:12 -0400 Subject: [PATCH] Trying to make the build and push base image for CICD work. Signed-off-by: copilotcoder --- Dockerfile.cicd-base | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Dockerfile.cicd-base b/Dockerfile.cicd-base index 26322d7..2a3fba8 100644 --- a/Dockerfile.cicd-base +++ b/Dockerfile.cicd-base @@ -59,6 +59,11 @@ RUN set -eux; \ exit 1; \ fi; \ done; \ + if apt-cache show libasound2t64 >/dev/null 2>&1; then \ + asound_package=libasound2t64; \ + else \ + asound_package=libasound2; \ + fi; \ apt-get install -y --no-install-recommends \ git \ curl \ @@ -77,7 +82,7 @@ RUN set -eux; \ libxrandr2 \ libgbm1 \ libxkbcommon0 \ - libasound2 \ + "$asound_package" \ tzdata \ gnupg \ wget \