fix: depend on capnproto

This commit is contained in:
2026-04-15 12:31:51 -04:00
parent 4b71e5ef85
commit 6ad797eaea

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 CAPNPROTO_VERSION=1.2.0-r0
RUN --mount=type=cache,sharing=locked,target=/var/cache/apk \
apk add --update capnproto=${CAPNPROTO_VERSION}
ARG CARGO_VERSION=1.91.1-r1 ARG CARGO_VERSION=1.91.1-r1
RUN --mount=type=cache,sharing=locked,target=/var/cache/apk \ RUN --mount=type=cache,sharing=locked,target=/var/cache/apk \
apk add --update cargo=${CARGO_VERSION} apk add --update cargo=${CARGO_VERSION}