From 6ad797eaea45fcb63f9eb85e0bc7a95f60c4cc7e Mon Sep 17 00:00:00 2001 From: Jacob Date: Wed, 15 Apr 2026 12:31:51 -0400 Subject: [PATCH] fix: depend on capnproto --- Dockerfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Dockerfile b/Dockerfile index 0926771..a1206d2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,6 +5,10 @@ ARG BUILD_BASE_VERSION=0.5-r3 RUN --mount=type=cache,sharing=locked,target=/var/cache/apk \ 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 RUN --mount=type=cache,sharing=locked,target=/var/cache/apk \ apk add --update cargo=${CARGO_VERSION}