From fa61d5a4b6d5b5d70adab32aebfd42a8d0ab4fc3 Mon Sep 17 00:00:00 2001 From: Jacob Date: Wed, 6 May 2026 20:45:49 -0400 Subject: [PATCH] fix: depend on `zlib-static` --- Dockerfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Dockerfile b/Dockerfile index 78d7263..4eb50c7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -17,6 +17,10 @@ ARG PROTOC_VERSION=31.1-r1 RUN --mount=type=cache,sharing=locked,target=/var/cache/apk \ apk add --update protoc=${PROTOC_VERSION} +ARG ZLIB_STATIC_VERSION=1.3.2-r0 +RUN --mount=type=cache,sharing=locked,target=/var/cache/apk \ + apk add --update zlib-static=${ZLIB_STATIC_VERSION} + RUN \ # This one would be nice if it worked: # --mount=type=bind,source=.,target=/root/app \