File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 11FROM buildpack-deps:noble
22
3- RUN apt-get update -yqq && apt-get install -yqq software-properties-common unzip cmake
3+ RUN apt-get update -yqq > /dev/null && apt-get install -yqq software-properties-common unzip cmake > /dev/null
44
5- RUN apt-get install -yqq g++-14
5+ RUN apt-get install -yqq g++-14 > /dev/null
66RUN update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-14 50
77
88ENV POCO_VERSION 1.13.3
99ENV POCO_HOME /poco
1010
1111WORKDIR ${POCO_HOME}
12- RUN wget https://pocoproject.org/releases/poco-${POCO_VERSION}/poco-${POCO_VERSION}-all.zip
13- RUN unzip poco-${POCO_VERSION}-all.zip
12+ RUN wget https://pocoproject.org/releases/poco-${POCO_VERSION}/poco-${POCO_VERSION}-all.zip --quiet
13+ RUN unzip poco-${POCO_VERSION}-all.zip -q
1414RUN mv ./poco-${POCO_VERSION}-all/* ./
1515
1616RUN ./configure --no-tests --no-samples
You can’t perform that action at this time.
0 commit comments