File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 33
44ENV DEBIAN_FRONTEND noninteractive
55
6- RUN apt-get -qq -y update
6+ RUN apt-get -qq -y update > /dev/null
77
8- RUN apt-get -qq -y install --no-install-recommends git cmake libev-dev libgoogle-perftools-dev libfmt-dev make gcc-9 g++-9 libre2-dev libboost-stacktrace-dev libhttp-parser-dev libxxhash-dev
8+ RUN apt-get -qq -y install --no-install-recommends git cmake libev-dev libgoogle-perftools-dev libfmt-dev make gcc-9 g++-9 libre2-dev libboost-stacktrace-dev libhttp-parser-dev libxxhash-dev > /dev/null
99
1010RUN update-alternatives --quiet --remove-all gcc \
1111 ; update-alternatives --quiet --remove-all g++ \
@@ -33,7 +33,7 @@ RUN git clone https://github.com/rtbtech/libsniper.git libs/core
3333
3434RUN cd libs/core && git checkout v1.3.1
3535
36- RUN mkdir build && cd /libsniper_bench/build && cmake -DCMAKE_BUILD_TYPE=Release -S .. && make --jobs=`nproc`
36+ RUN mkdir build && cd /libsniper_bench/build && cmake -DCMAKE_BUILD_TYPE=Release -S .. && make --jobs=`nproc` --quiet
3737
3838ARG BENCHMARK_ENV
3939
You can’t perform that action at this time.
0 commit comments