We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 489dce1 commit 8780899Copy full SHA for 8780899
frameworks/C++/reactor/reactor.dockerfile
@@ -1,8 +1,8 @@
1
FROM ubuntu:22.04
2
MAINTAINER [email protected]
3
4
-RUN apt-get update -yqq
5
-RUN apt-get install -yqq g++-11 gcc-11 make git
+RUN apt-get update -yqq > /dev/null
+RUN apt-get install -yqq g++-11 gcc-11 make git > /dev/null
6
7
RUN update-alternatives --quiet --remove-all gcc \
8
; update-alternatives --quiet --remove-all g++ \
@@ -23,7 +23,7 @@ WORKDIR /reactor-bench
23
RUN git clone https://github.com/shaovie/reactor.git
24
25
26
-RUN cd reactor/ && make clean all
+RUN cd reactor/ && make clean all --quiet
27
COPY ./techempower.cpp /reactor-bench/reactor
28
29
WORKDIR /reactor-bench/reactor
0 commit comments