From 310f1727453d39c34b54157be5cf9fdb529fe3ab Mon Sep 17 00:00:00 2001 From: Matteo Merli Date: Tue, 11 Oct 2022 11:33:49 -0700 Subject: [PATCH] Use Alpine 3.12 to build APKs --- pkg/apk/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/apk/Dockerfile b/pkg/apk/Dockerfile index 2a3d3a03..182c7d78 100644 --- a/pkg/apk/Dockerfile +++ b/pkg/apk/Dockerfile @@ -17,7 +17,7 @@ # under the License. # -FROM alpine:3.16 +FROM alpine:3.12 ARG PLATFORM @@ -48,7 +48,7 @@ RUN BOOST_VERSION=$(dep-version.py boost) && \ tar xfz boost_${BOOST_VERSION_UNDESRSCORE}.tar.gz && \ cd boost_${BOOST_VERSION_UNDESRSCORE} && \ ./bootstrap.sh --with-libraries=regex && \ - ./b2 address-model=64 cxxflags=-fPIC link=static threading=multi variant=release install && \ + ./b2 -d0 address-model=64 cxxflags=-fPIC link=static threading=multi variant=release install && \ rm -rf /boost_${BOOST_VERSION_UNDESRSCORE}.tar.gz /boost_${BOOST_VERSION_UNDESRSCORE} # Download and compile protobuf