File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed
instrumentation/otel-webserver-module/docker/almalinux8 Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change 11
2- FROM almalinux:9.4
2+ FROM almalinux:8.10
33
44
55ARG BUILD_NUMBER
@@ -91,12 +91,14 @@ RUN git clone https://github.com/grpc/grpc \
9191RUN mkdir -p dependencies
9292
9393# install boost version 1.75.0
94- RUN wget wget https://archives.boost.io/release/${BOOST_VERSION}/source/${BOOST_FILENAME}_rc1.tar.gz \
95- && tar -xvf ${BOOST_FILENAME}_rc1.tar.gz \
94+ RUN wget https://archives.boost.io/release/${BOOST_VERSION}/source/${BOOST_FILENAME}.tar.gz \
95+ # && tar -xvf ${BOOST_FILENAME}_rc1.tar.gz \
96+ && tar -xvf ${BOOST_FILENAME}.tar.gz \
9697 && cd ${BOOST_FILENAME} \
9798 && ./bootstrap.sh --with-libraries=filesystem,system --prefix=/dependencies/boost/${BOOST_VERSION}/ \
9899 && ./b2 install define=BOOST_ERROR_CODE_HEADER_ONLY link=static threading=multi cxxflags="-fvisibility=hidden -fPIC" cflags="-fvisibility=hidden -fPIC" \
99- && cd .. && rm -rf ${BOOST_FILENAME} && rm ${BOOST_FILENAME}_rc1.tar.gz
100+ # && cd .. && rm -rf ${BOOST_FILENAME} && rm ${BOOST_FILENAME}_rc1.tar.gz
101+ && cd .. && rm -rf ${BOOST_FILENAME} && rm ${BOOST_FILENAME}.tar.gz
100102
101103# install Apr
102104RUN mkdir -p dependencies/apr/${APR_VERSION} \
You can’t perform that action at this time.
0 commit comments