@@ -45,7 +45,7 @@ ENV LD_LIBRARY_PATH /opt/rh/devtoolset-7/root/usr/lib64:/opt/rh/devtoolset-7/roo
4545# invocations take extremely long to complete.
4646
4747WORKDIR /var/tmp/build/pkg-config-cpp
48- RUN curl -sSL https://pkgconfig.freedesktop.org/releases/pkg-config-0.29.2.tar.gz | \
48+ RUN curl -fsSL https://pkgconfig.freedesktop.org/releases/pkg-config-0.29.2.tar.gz | \
4949 tar -xzf - --strip-components=1 && \
5050 ./configure --with-internal-glib && \
5151 make -j "$(nproc)" && \
@@ -63,7 +63,7 @@ ENV PKG_CONFIG_PATH=/usr/local/lib/pkgconfig:/usr/local/lib64/pkgconfig:/usr/lib
6363ENV PATH=/usr/local/bin:${PATH}
6464
6565WORKDIR /var/tmp/build/abseil-cpp
66- RUN curl -sSL https://github.com/abseil/abseil-cpp/archive/20230125.3.tar.gz | \
66+ RUN curl -fsSL https://github.com/abseil/abseil-cpp/archive/20230125.3.tar.gz | \
6767 tar -xzf - --strip-components=1 && \
6868 sed -i 's/^#define ABSL_OPTION_USE_\( .*\) 2/#define ABSL_OPTION_USE_\1 0/' "absl/base/options.h" && \
6969 cmake \
@@ -76,7 +76,7 @@ RUN curl -sSL https://github.com/abseil/abseil-cpp/archive/20230125.3.tar.gz | \
7676 ldconfig && cd /var/tmp && rm -fr build
7777
7878WORKDIR /var/tmp/build/protobuf
79- RUN curl -sSL https://github.com/protocolbuffers/protobuf/archive/v21.12.tar.gz | \
79+ RUN curl -fsSL https://github.com/protocolbuffers/protobuf/archive/v21.12.tar.gz | \
8080 tar -xzf - --strip-components=1 && \
8181 cmake \
8282 -DCMAKE_BUILD_TYPE=Release \
@@ -89,14 +89,14 @@ RUN curl -sSL https://github.com/protocolbuffers/protobuf/archive/v21.12.tar.gz
8989 ldconfig && cd /var/tmp && rm -fr build
9090
9191WORKDIR /var/tmp/build/c-ares
92- RUN curl -sSL https://github.com/c-ares/c-ares/archive/cares-1_14_0.tar.gz | \
92+ RUN curl -fsSL https://github.com/c-ares/c-ares/archive/cares-1_14_0.tar.gz | \
9393 tar -xzf - --strip-components=1 && \
9494 ./buildconf && ./configure && make -j "$(nproc)" && \
9595 make install && \
9696 ldconfig && cd /var/tmp && rm -fr build
9797
9898WORKDIR /var/tmp/build/grpc
99- RUN curl -sSL https://github.com/grpc/grpc/archive/v1.54.0.tar.gz | \
99+ RUN curl -fsSL https://github.com/grpc/grpc/archive/v1.54.0.tar.gz | \
100100 tar -xzf - --strip-components=1 && \
101101 cmake \
102102 -DCMAKE_BUILD_TYPE=Release \
@@ -115,7 +115,7 @@ RUN curl -sSL https://github.com/grpc/grpc/archive/v1.54.0.tar.gz | \
115115 ldconfig && cd /var/tmp && rm -fr build
116116
117117WORKDIR /var/tmp/build/crc32c
118- RUN curl -sSL https://github.com/google/crc32c/archive/1.1.2.tar.gz | \
118+ RUN curl -fsSL https://github.com/google/crc32c/archive/1.1.2.tar.gz | \
119119 tar -xzf - --strip-components=1 && \
120120 cmake \
121121 -DCMAKE_BUILD_TYPE=Release \
@@ -129,7 +129,7 @@ RUN curl -sSL https://github.com/google/crc32c/archive/1.1.2.tar.gz | \
129129 ldconfig && cd /var/tmp && rm -fr build
130130
131131WORKDIR /var/tmp/build/json
132- RUN curl -sSL https://github.com/nlohmann/json/archive/v3.11.2.tar.gz | \
132+ RUN curl -fsSL https://github.com/nlohmann/json/archive/v3.11.2.tar.gz | \
133133 tar -xzf - --strip-components=1 && \
134134 cmake \
135135 -DCMAKE_BUILD_TYPE=Release \
@@ -143,7 +143,7 @@ RUN curl -sSL https://github.com/nlohmann/json/archive/v3.11.2.tar.gz | \
143143# Install googletest, remove the downloaded files and the temporary artifacts
144144# after a successful build to keep the image smaller (and with fewer layers)
145145WORKDIR /var/tmp/build
146- RUN curl -sSL https://github.com/google/googletest/archive/v1.13.0.tar.gz | \
146+ RUN curl -fsSL https://github.com/google/googletest/archive/v1.13.0.tar.gz | \
147147 tar -xzf - --strip-components=1 && \
148148 cmake \
149149 -DCMAKE_BUILD_TYPE="Release" \
@@ -154,7 +154,7 @@ RUN curl -sSL https://github.com/google/googletest/archive/v1.13.0.tar.gz | \
154154
155155# Download and compile Google microbenchmark support library:
156156WORKDIR /var/tmp/build
157- RUN curl -sSL https://github.com/google/benchmark/archive/v1.8.0.tar.gz | \
157+ RUN curl -fsSL https://github.com/google/benchmark/archive/v1.8.0.tar.gz | \
158158 tar -xzf - --strip-components=1 && \
159159 cmake \
160160 -DCMAKE_BUILD_TYPE="Release" \
@@ -165,7 +165,7 @@ RUN curl -sSL https://github.com/google/benchmark/archive/v1.8.0.tar.gz | \
165165 ldconfig && cd /var/tmp && rm -fr build
166166
167167WORKDIR /var/tmp/build/
168- RUN curl -sSL https://github.com/open-telemetry/opentelemetry-cpp/archive/v1.9.0.tar.gz | \
168+ RUN curl -fsSL https://github.com/open-telemetry/opentelemetry-cpp/archive/v1.9.0.tar.gz | \
169169 tar -xzf - --strip-components=1 && \
170170 cmake \
171171 -DCMAKE_CXX_STANDARD=14 \
0 commit comments