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 6007c64 commit 9d045a1Copy full SHA for 9d045a1
frameworks/C++/cinatra/cinatra.dockerfile
@@ -1,11 +1,11 @@
1
FROM ubuntu:22.04
2
-RUN apt-get update -yqq && \
3
-apt-get install -yqq cmake git uuid-dev gcc g++ autoconf
+RUN apt-get update -yqq > /dev/null && \
+apt-get install -yqq cmake git uuid-dev gcc g++ autoconf > /dev/null
4
ENV CINATRA=/cinatra
5
WORKDIR /
6
RUN git clone https://github.com/qicosmos/cinatra.git
7
WORKDIR $CINATRA
8
RUN git checkout c9bec308e27174c8b7f0f01c92652509f7b47253
9
-RUN mkdir build && cd build && cmake .. && make -j
+RUN mkdir build && cd build && cmake .. && make -j --silent
10
EXPOSE 8090
11
-CMD ./build/example/benchmark
+CMD ./build/example/benchmark
0 commit comments