Skip to content

Commit 489dce1

Browse files
authored
Update poco.dockerfile silent
1 parent fccb600 commit 489dce1

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

frameworks/C++/poco/poco.dockerfile

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

88
ENV POCO_VERSION 1.13.3
99
ENV POCO_HOME /poco
1010

1111
WORKDIR ${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
1414
RUN mv ./poco-${POCO_VERSION}-all/* ./
1515

1616
RUN ./configure --no-tests --no-samples

0 commit comments

Comments
 (0)