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 8d91f13 commit 1d1b705Copy full SHA for 1d1b705
frameworks/C++/cuehttp/cuehttp.dockerfile
@@ -1,7 +1,7 @@
1
FROM ubuntu:18.04
2
3
RUN apt-get update -yqq
4
-RUN apt-get install -yqq g++-7 cmake git libboost-all-dev
+RUN apt-get install -yqq g++-7 cmake git libboost-all-dev > /dev/null
5
6
ENV CUEHTTP=/cuehttp
7
@@ -10,9 +10,9 @@ RUN git clone https://github.com/xcyl/cuehttp.git
10
11
WORKDIR /cuehttp
12
13
-RUN git checkout a7f5a4c935e22d110b70c5928c8ea2ce4dcbeeb5
+RUN git checkout a7f5a4c935e22d110b70c5928c8ea2ce4dcbeeb5 > /dev/null
14
15
WORKDIR /cuehttp/examples/plaintext
16
-RUN mkdir build && cd build && cmake .. && make -j8
+RUN mkdir build && cd build && cmake .. && make -j8 --quiet
17
EXPOSE 8080
18
CMD ./build/plaintext
0 commit comments