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 && apt-get install -yqq software-properties-common unzip > /dev/null
44
5- RUN apt-get install -yqq g++-4.8 libjson0-dev
5+ RUN apt-get install -yqq g++-4.8 libjson0-dev > /dev/null
66RUN update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-4.8 50
77
88WORKDIR /installs
99
1010ENV VERSION=0.2.3
1111ENV CPPSP_HOME=/installs/cppsp_$VERSION
1212
13- RUN 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
13+ RUN wget -q http://downloads.sourceforge.net/project/cpollcppsp/CPPSP%200.2%20%28testing%29/cppsp_$VERSION.tar.xz --quiet
14+ RUN tar xf cppsp_$VERSION.tar.xz --quiet
1515
1616RUN 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
2020
21- RUN apt-get install -yqq postgresql-server-dev-9.5
21+ RUN apt-get install -yqq postgresql-server-dev-9.5 > /dev/null
2222ENV CPLUS_INCLUDE_PATH=/usr/include/postgresql:/usr/include/postgresql/9.5/server:${CPLUS_INCLUDE_PATH}
2323
2424ADD ./ /cpoll_cppsp
2525WORKDIR /cpoll_cppsp
2626
27- RUN make clean && make
27+ RUN make clean && make --quiet
2828
2929WORKDIR $CPPSP_HOME
3030
You can’t perform that action at this time.
0 commit comments