fix: add required clang libs dependency

This commit is contained in:
2026-04-15 01:40:58 -04:00
parent 33a7b15720
commit 01a55d42ec

View File

@@ -5,6 +5,10 @@ ARG BUILD_BASE_VERSION=0.5-r3
RUN --mount=type=cache,sharing=locked,target=/var/cache/apk \ RUN --mount=type=cache,sharing=locked,target=/var/cache/apk \
apk add --update build-base=${BUILD_BASE_VERSION} apk add --update build-base=${BUILD_BASE_VERSION}
ARG CLANG21_LIBS_VERSION=21.1.2-r2
RUN --mount=type=cache,sharing=locked,target=/var/cache/apk \
apk add --update clang21-libs=${CLANG21_LIBS_VERSION}
ARG CMAKE_VERSION=4.1.3-r0 ARG CMAKE_VERSION=4.1.3-r0
RUN --mount=type=cache,sharing=locked,target=/var/cache/apk \ RUN --mount=type=cache,sharing=locked,target=/var/cache/apk \
apk add --update cmake=${CMAKE_VERSION} apk add --update cmake=${CMAKE_VERSION}