File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
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 cmake
3+ RUN apt-get update -yqq && apt-get install -yqq software-properties-common unzip cmake > /dev/null
44
5- RUN apt-get install -yqq libgcrypt11-dev python nginx
5+ RUN apt-get install -yqq libgcrypt11-dev python nginx > /dev/null
66
77WORKDIR /installs
88
@@ -13,14 +13,14 @@ ENV BACKNAME=cppcms
1313ENV CPPCMS_HOME=/installs/$BACKNAME-$CPPCMS_VERSION
1414ENV CPPCMSROOT=${CPPCMS_HOME}-install
1515
16- RUN wget -q https://download.sourceforge.net/project/cppcms/$BACKNAME/$CPPCMS_VERSION-rc1/$BACKNAME-$CPPCMS_VERSION.tar.bz2
17- RUN tar xf $BACKNAME-$CPPCMS_VERSION.tar.bz2
16+ RUN wget -q https://download.sourceforge.net/project/cppcms/$BACKNAME/$CPPCMS_VERSION-rc1/$BACKNAME-$CPPCMS_VERSION.tar.bz2 --quiet
17+ RUN tar xf $BACKNAME-$CPPCMS_VERSION.tar.bz2 > /dev/null
1818
1919RUN cd $BACKNAME-$CPPCMS_VERSION && \
2020 mkdir build && \
2121 cd build && \
2222 cmake -DCMAKE_INSTALL_PREFIX=${CPPCMSROOT} .. && \
23- make && make install
23+ make --quiet && make install --quiet
2424
2525ENV CPPCMS_HOME=${CPPCMSROOT}
2626
@@ -35,7 +35,7 @@ RUN tar xf $BACKNAME-$CPPDB_VERSION.tar.bz2
3535RUN cd $BACKNAME-$CPPDB_VERSION && \
3636 mkdir build && cd build && \
3737 cmake -DCMAKE_INSTALL_PREFIX=${CPPDBROOT} .. && \
38- make && make install
38+ make --quiet && make install --quiet
3939
4040ENV CPPDB_HOME=${CPPDBROOT}
4141
You can’t perform that action at this time.
0 commit comments