File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
frameworks/C++/cpoll_cppsp Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 11FROM buildpack-deps:xenial
22
3- RUN apt-get update -yqq && apt-get install -yqq software-properties-common unzip
3+ RUN apt-get update -yqq > /dev/null && apt-get install -yqq software-properties-common unzip > /dev/null
44
5- RUN apt-get install -yqq g++-4.8 libjson0-dev
6- RUN update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-4.8 50
5+ RUN apt-get install -yqq g++-4.8 libjson0-dev > /dev/null
6+ RUN update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-4.8 50 > /dev/null
77
88WORKDIR /installs
99
1010ENV VERSION=0.2.3
1111ENV CPPSP_HOME=/installs/cppsp_$VERSION
1212
1313RUN wget -q http://downloads.sourceforge.net/project/cpollcppsp/CPPSP%200.2%20%28testing%29/cppsp_$VERSION.tar.xz
14- RUN tar xf cppsp_$VERSION.tar.xz
14+ RUN tar xf cppsp_$VERSION.tar.xz --quiet
1515
16- RUN mv cppsp_rel$VERSION/ $CPPSP_HOME
16+ RUN mv cppsp_rel$VERSION/ $CPPSP_HOME
1717
1818RUN sed -i 's|CXX := .*|CXX := g++-4.8|g' $CPPSP_HOME/makefile
1919RUN sed -i 's|-Wall|-w|g' $CPPSP_HOME/makefile
@@ -23,7 +23,7 @@ ENV CPLUS_INCLUDE_PATH=/usr/include/postgresql:/usr/include/postgresql/9.5/serve
2323ADD ./ /cpoll_cppsp
2424WORKDIR /cpoll_cppsp
2525
26- RUN make clean && make
26+ RUN make clean && make --silent
2727
2828WORKDIR $CPPSP_HOME
2929
You can’t perform that action at this time.
0 commit comments