Trying to make the build and push base image for CICD work.
Some checks failed
CICD / Build and Push CICD Images (push) Successful in 1h7m14s
CICD / Build CICD Image Failure Postmortem (push) Has been skipped
CICD / Source Checks (push) Failing after 22m43s
CICD / Build Release Images (push) Has been skipped
CICD / Build Tester Images (push) Has been skipped
CICD / Production Image Failures Postmortem (push) Has been skipped
CICD / Source Lanes Failure Postmortem (push) Successful in 17s
CICD / Production Images Complete (push) Failing after 31s
CICD / Runtime Black-Box Integration Tests (push) Has been skipped
CICD / End-to-End Tests (push) Has been skipped
CICD / Integration Tests Failure Postmortem (push) Has been skipped
CICD / E2E Tests Failure Postmortem (push) Has been skipped
CICD / Promote Staging Images To Release (push) Has been skipped
CICD / Dependency Audits (Informational) (push) Successful in 31m23s
CICD / CICD Tests Complete (push) Failing after 9s

Signed-off-by: copilotcoder <copilotcoder@darkhelm.org>
This commit is contained in:
copilotcoder
2026-07-22 07:52:12 -04:00
parent 2bb73a3f6b
commit ff53dec2c2

View File

@@ -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 \