fix: depend on zlib-static

This commit is contained in:
2026-05-06 20:45:49 -04:00
parent a752838a46
commit fa61d5a4b6

View File

@@ -17,6 +17,10 @@ ARG PROTOC_VERSION=31.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 protoc=${PROTOC_VERSION} 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 \ RUN \
# This one would be nice if it worked: # This one would be nice if it worked:
# --mount=type=bind,source=.,target=/root/app \ # --mount=type=bind,source=.,target=/root/app \