Skip to content

Commit d64f999

Browse files
authored
Update cpoll_cppsp-postgres-raw-threadpool.dockerfile silent
1 parent 1f9c114 commit d64f999

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

frameworks/C++/cpoll_cppsp/cpoll_cppsp-postgres-raw-threadpool.dockerfile

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,30 @@
11
FROM 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
66
RUN update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-4.8 50
77

88
WORKDIR /installs
99

1010
ENV VERSION=0.2.3
1111
ENV 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

1616
RUN mv cppsp_rel$VERSION/ $CPPSP_HOME
1717

1818
RUN sed -i 's|CXX := .*|CXX := g++-4.8|g' $CPPSP_HOME/makefile
1919
RUN 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
2222
ENV CPLUS_INCLUDE_PATH=/usr/include/postgresql:/usr/include/postgresql/9.5/server:${CPLUS_INCLUDE_PATH}
2323

2424
ADD ./ /cpoll_cppsp
2525
WORKDIR /cpoll_cppsp
2626

27-
RUN make clean && make
27+
RUN make clean && make --quiet
2828

2929
WORKDIR $CPPSP_HOME
3030

0 commit comments

Comments
 (0)