Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[c++] Udate all frameworks to build silently #9456

Draft
wants to merge 58 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
58 commits
Select commit Hold shift + click to select a range
9d045a1
Update cinatra.dockerfile silent
joanhey Dec 9, 2024
e84cc2f
Update cpoll_cppsp.dockerfile silent
joanhey Dec 9, 2024
e4f5afa
Update cpoll_cppsp-raw.dockerfile silent
joanhey Dec 9, 2024
1f9c114
Update cpoll_cppsp-postgres-raw.dockerfile silent
joanhey Dec 9, 2024
d64f999
Update cpoll_cppsp-postgres-raw-threadpool.dockerfile silent
joanhey Dec 9, 2024
476b163
Update cppcms.dockerfile silent
joanhey Dec 9, 2024
d20905e
Update cppcms-postgres.dockerfile silent
joanhey Dec 9, 2024
39c6d58
Update cppcms.dockerfile silent
joanhey Dec 9, 2024
73f3602
Update cppcms-postgres.dockerfile silent
joanhey Dec 9, 2024
1dd56d6
Update cppcms-direct.dockerfile silent
joanhey Dec 9, 2024
6b7098e
Update cpoll_cppsp.dockerfile silent
joanhey Dec 9, 2024
db90f2e
Update cpoll_cppsp-raw.dockerfile silent
joanhey Dec 9, 2024
2568b8d
Update cpoll_cppsp-postgres-raw.dockerfile silent
joanhey Dec 9, 2024
3c6f222
Update cpoll_cppsp-postgres-raw-threadpool.dockerfile silent
joanhey Dec 9, 2024
8d91f13
Update cppcms.dockerfile silent
joanhey Dec 9, 2024
1d1b705
Update cuehttp.dockerfile silent
joanhey Dec 9, 2024
4c514e8
Update cutelyst-thread.dockerfile silent
joanhey Dec 9, 2024
22f14af
Update cutelyst-thread-pico.dockerfile silent
joanhey Dec 9, 2024
b89bc65
Update cutelyst-thread-pg.dockerfile silent
joanhey Dec 9, 2024
6bf7628
Update cutelyst-thread-pg-cutelee.dockerfile silent
joanhey Dec 9, 2024
9a82ed6
Update cutelyst-thread-my.dockerfile silent
joanhey Dec 9, 2024
5370446
Update cutelyst-thread-my-cutelee.dockerfile silent
joanhey Dec 9, 2024
6658816
Update cutelyst-thread-apg.dockerfile silent
joanhey Dec 9, 2024
289c09c
Update cutelyst-thread-apg-batch.dockerfile silent
joanhey Dec 9, 2024
0710a0f
Update cutelyst-t-apg-cutelee.dockerfile silent
joanhey Dec 9, 2024
7ff09b6
Update cutelyst-pf-pg.dockerfile silent
joanhey Dec 9, 2024
4bd9b8d
Update cutelyst-pf-my.dockerfile silent
joanhey Dec 9, 2024
3a7a570
Update cutelyst-pf-apg.dockerfile silent
joanhey Dec 9, 2024
e26102b
Update cutelyst-pf-apg-batch.dockerfile silent
joanhey Dec 9, 2024
a27750e
Update cutelyst-nginx.dockerfile silent
joanhey Dec 9, 2024
0a3030f
Update cutelyst-nginx-pg.dockerfile silent
joanhey Dec 9, 2024
216562e
Update cutelyst-nginx-my.dockerfile silent
joanhey Dec 9, 2024
75ffb7a
Update drogon.dockerfile silent
joanhey Dec 9, 2024
d46c4e0
Update drogon-core.dockerfile silent
joanhey Dec 9, 2024
e74aac6
Update drogon.dockerfile silent
joanhey Dec 9, 2024
c588062
Update libhttpserver.dockerfile silent
joanhey Dec 9, 2024
78cf56d
Update libsniper.dockerfile silent
joanhey Dec 9, 2024
1d25816
Update ltio.dockerfile silent
joanhey Dec 9, 2024
04bdd4c
Update oatpp.dockerfile silent
joanhey Dec 9, 2024
228bef1
Update oatpp-no-mp.dockerfile silent
joanhey Dec 9, 2024
dda888b
Update oatpp-async.dockerfile silent
joanhey Dec 9, 2024
3b5841f
Update oatpp-async-no-mp.dockerfile silent
joanhey Dec 9, 2024
fccb600
Update paozhu.dockerfile silent
joanhey Dec 9, 2024
489dce1
Update poco.dockerfile silent
joanhey Dec 9, 2024
8780899
Update reactor.dockerfile silent
joanhey Dec 9, 2024
2e6ef7b
Update treefrog.dockerfile silent
joanhey Dec 9, 2024
314c279
Update treefrog-mysql.dockerfile silent
joanhey Dec 9, 2024
41a85e6
Update treefrog-mongodb.dockerfile silent
joanhey Dec 9, 2024
79b39d9
Update treefrog-epoll.dockerfile silent
joanhey Dec 9, 2024
b125f08
Update userver.dockerfile silent
joanhey Dec 9, 2024
3328a51
Update cppcms.dockerfile silent
joanhey Dec 9, 2024
e7d0256
Update poco.dockerfile
joanhey Dec 9, 2024
50ab450
Update drogon.dockerfile silent
joanhey Dec 9, 2024
6ec6bbb
Update drogon-core.dockerfile silent
joanhey Dec 9, 2024
5fb2f63
Update poco.dockerfile unzip silent
joanhey Dec 9, 2024
f5a46b4
Update libhttpserver.dockerfile silent make
joanhey Dec 9, 2024
7770b30
Update libsniper.dockerfile silent cmake
joanhey Dec 9, 2024
89ce21b
Update cinatra.dockerfile silent cmake
joanhey Dec 9, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions frameworks/C++/cinatra/cinatra.dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
FROM ubuntu:22.04
RUN apt-get update -yqq && \
apt-get install -yqq cmake git uuid-dev gcc g++ autoconf
RUN apt-get update -yqq > /dev/null && \
apt-get install -yqq cmake git uuid-dev gcc g++ autoconf > /dev/null
ENV CINATRA=/cinatra
WORKDIR /
RUN git clone https://github.com/qicosmos/cinatra.git
WORKDIR $CINATRA
RUN git checkout c9bec308e27174c8b7f0f01c92652509f7b47253
RUN mkdir build && cd build && cmake .. && make -j
RUN mkdir build && cd build && cmake -DCMAKE_RULE_MESSAGES=OFF .. && make -j --silent
EXPOSE 8090
CMD ./build/example/benchmark
CMD ./build/example/benchmark
Original file line number Diff line number Diff line change
@@ -1,30 +1,30 @@
FROM buildpack-deps:xenial

RUN apt-get update -yqq && apt-get install -yqq software-properties-common unzip
RUN apt-get update -yqq && apt-get install -yqq software-properties-common unzip > /dev/null

RUN apt-get install -yqq g++-4.8 libjson0-dev
RUN apt-get install -yqq g++-4.8 libjson0-dev > /dev/null
RUN update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-4.8 50

WORKDIR /installs

ENV VERSION=0.2.3
ENV CPPSP_HOME=/installs/cppsp_$VERSION

RUN wget -q http://downloads.sourceforge.net/project/cpollcppsp/CPPSP%200.2%20%28testing%29/cppsp_$VERSION.tar.xz
RUN tar xf cppsp_$VERSION.tar.xz
RUN wget -q http://downloads.sourceforge.net/project/cpollcppsp/CPPSP%200.2%20%28testing%29/cppsp_$VERSION.tar.xz --quiet
RUN tar xf cppsp_$VERSION.tar.xz > /dev/null

RUN mv cppsp_rel$VERSION/ $CPPSP_HOME

RUN sed -i 's|CXX := .*|CXX := g++-4.8|g' $CPPSP_HOME/makefile
RUN sed -i 's|-Wall|-w|g' $CPPSP_HOME/makefile

RUN apt-get install -yqq postgresql-server-dev-9.5
RUN apt-get install -yqq postgresql-server-dev-9.5 > /dev/null
ENV CPLUS_INCLUDE_PATH=/usr/include/postgresql:/usr/include/postgresql/9.5/server:${CPLUS_INCLUDE_PATH}

ADD ./ /cpoll_cppsp
WORKDIR /cpoll_cppsp

RUN make clean && make
RUN make clean && make --quiet

WORKDIR $CPPSP_HOME

Expand Down
12 changes: 6 additions & 6 deletions frameworks/C++/cpoll_cppsp/cpoll_cppsp-postgres-raw.dockerfile
Original file line number Diff line number Diff line change
@@ -1,30 +1,30 @@
FROM buildpack-deps:xenial

RUN apt-get update -yqq && apt-get install -yqq software-properties-common unzip
RUN apt-get update -yqq && apt-get install -yqq software-properties-common unzip > /dev/null

RUN apt-get install -yqq g++-4.8 libjson0-dev
RUN apt-get install -yqq g++-4.8 libjson0-dev > /dev/null
RUN update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-4.8 50

WORKDIR /installs

ENV VERSION=0.2.3
ENV CPPSP_HOME=/installs/cppsp_$VERSION

RUN wget -q http://downloads.sourceforge.net/project/cpollcppsp/CPPSP%200.2%20%28testing%29/cppsp_$VERSION.tar.xz
RUN tar xf cppsp_$VERSION.tar.xz
RUN wget -q http://downloads.sourceforge.net/project/cpollcppsp/CPPSP%200.2%20%28testing%29/cppsp_$VERSION.tar.xz --quiet
RUN tar xf cppsp_$VERSION.tar.xz > /dev/null

RUN mv cppsp_rel$VERSION/ $CPPSP_HOME

RUN sed -i 's|CXX := .*|CXX := g++-4.8|g' $CPPSP_HOME/makefile
RUN sed -i 's|-Wall|-w|g' $CPPSP_HOME/makefile

RUN apt-get install -yqq postgresql-server-dev-9.5
RUN apt-get install -yqq postgresql-server-dev-9.5 > /dev/null
ENV CPLUS_INCLUDE_PATH=/usr/include/postgresql:/usr/include/postgresql/9.5/server:${CPLUS_INCLUDE_PATH}

ADD ./ /cpoll_cppsp
WORKDIR /cpoll_cppsp

RUN make clean && make
RUN make clean && make --quiet

WORKDIR $CPPSP_HOME

Expand Down
12 changes: 6 additions & 6 deletions frameworks/C++/cpoll_cppsp/cpoll_cppsp-raw.dockerfile
Original file line number Diff line number Diff line change
@@ -1,30 +1,30 @@
FROM buildpack-deps:xenial

RUN apt-get update -yqq && apt-get install -yqq software-properties-common unzip
RUN apt-get update -yqq > /dev/null && apt-get install -yqq software-properties-common unzip > /dev/null

RUN apt-get install -yqq g++-4.8 libjson0-dev
RUN apt-get install -yqq g++-4.8 libjson0-dev > /dev/null
RUN update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-4.8 50

WORKDIR /installs

ENV VERSION=0.2.3
ENV CPPSP_HOME=/installs/cppsp_$VERSION

RUN wget -q http://downloads.sourceforge.net/project/cpollcppsp/CPPSP%200.2%20%28testing%29/cppsp_$VERSION.tar.xz
RUN tar xf cppsp_$VERSION.tar.xz
RUN wget -q http://downloads.sourceforge.net/project/cpollcppsp/CPPSP%200.2%20%28testing%29/cppsp_$VERSION.tar.xz --quiet
RUN tar xf cppsp_$VERSION.tar.xz > /dev/null

RUN mv cppsp_rel$VERSION/ $CPPSP_HOME

RUN sed -i 's|CXX := .*|CXX := g++-4.8|g' $CPPSP_HOME/makefile
RUN sed -i 's|-Wall|-w|g' $CPPSP_HOME/makefile

RUN apt-get install -yqq postgresql-server-dev-9.5
RUN apt-get install -yqq postgresql-server-dev-9.5 > /dev/null
ENV CPLUS_INCLUDE_PATH=/usr/include/postgresql:/usr/include/postgresql/9.5/server:${CPLUS_INCLUDE_PATH}

ADD ./ /cpoll_cppsp
WORKDIR /cpoll_cppsp

RUN make clean && make
RUN make clean && make --quiet

WORKDIR $CPPSP_HOME

Expand Down
12 changes: 6 additions & 6 deletions frameworks/C++/cpoll_cppsp/cpoll_cppsp.dockerfile
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
FROM buildpack-deps:xenial

RUN apt-get update -yqq && apt-get install -yqq software-properties-common unzip
RUN apt-get update -yqq > /dev/null && apt-get install -yqq software-properties-common unzip > /dev/null

RUN apt-get install -yqq g++-4.8 libjson0-dev
RUN update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-4.8 50
RUN apt-get install -yqq g++-4.8 libjson0-dev > /dev/null
RUN update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-4.8 50 > /dev/null

WORKDIR /installs

ENV VERSION=0.2.3
ENV CPPSP_HOME=/installs/cppsp_$VERSION

RUN wget -q http://downloads.sourceforge.net/project/cpollcppsp/CPPSP%200.2%20%28testing%29/cppsp_$VERSION.tar.xz
RUN tar xf cppsp_$VERSION.tar.xz
RUN tar xf cppsp_$VERSION.tar.xz > /dev/null

RUN mv cppsp_rel$VERSION/ $CPPSP_HOME
RUN mv cppsp_rel$VERSION/ $CPPSP_HOME

RUN sed -i 's|CXX := .*|CXX := g++-4.8|g' $CPPSP_HOME/makefile
RUN sed -i 's|-Wall|-w|g' $CPPSP_HOME/makefile
Expand All @@ -23,7 +23,7 @@ ENV CPLUS_INCLUDE_PATH=/usr/include/postgresql:/usr/include/postgresql/9.5/serve
ADD ./ /cpoll_cppsp
WORKDIR /cpoll_cppsp

RUN make clean && make
RUN make clean && make --silent

WORKDIR $CPPSP_HOME

Expand Down
12 changes: 6 additions & 6 deletions frameworks/C++/cppcms/cppcms-direct.dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
FROM buildpack-deps:xenial

RUN apt-get update -yqq && apt-get install -yqq software-properties-common unzip cmake
RUN apt-get update -yqq && apt-get install -yqq software-properties-common unzip cmake > /dev/null

RUN apt-get install -yqq libgcrypt11-dev python nginx
RUN apt-get install -yqq libgcrypt11-dev python nginx > /dev/null

WORKDIR /installs

Expand All @@ -13,14 +13,14 @@ ENV BACKNAME=cppcms
ENV CPPCMS_HOME=/installs/$BACKNAME-$CPPCMS_VERSION
ENV CPPCMSROOT=${CPPCMS_HOME}-install

RUN wget -q https://download.sourceforge.net/project/cppcms/$BACKNAME/$CPPCMS_VERSION-rc1/$BACKNAME-$CPPCMS_VERSION.tar.bz2
RUN tar xf $BACKNAME-$CPPCMS_VERSION.tar.bz2
RUN wget -q https://download.sourceforge.net/project/cppcms/$BACKNAME/$CPPCMS_VERSION-rc1/$BACKNAME-$CPPCMS_VERSION.tar.bz2 --quiet
RUN tar xf $BACKNAME-$CPPCMS_VERSION.tar.bz2 > /dev/null

RUN cd $BACKNAME-$CPPCMS_VERSION && \
mkdir build && \
cd build && \
cmake -DCMAKE_INSTALL_PREFIX=${CPPCMSROOT} .. && \
make && make install
make --quiet && make install --quiet

ENV CPPCMS_HOME=${CPPCMSROOT}

Expand All @@ -35,7 +35,7 @@ RUN tar xf $BACKNAME-$CPPDB_VERSION.tar.bz2
RUN cd $BACKNAME-$CPPDB_VERSION && \
mkdir build && cd build && \
cmake -DCMAKE_INSTALL_PREFIX=${CPPDBROOT} .. && \
make && make install
make --quiet && make install --quiet

ENV CPPDB_HOME=${CPPDBROOT}

Expand Down
18 changes: 9 additions & 9 deletions frameworks/C++/cppcms/cppcms-postgres.dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
FROM buildpack-deps:xenial

RUN apt-get update -yqq && apt-get install -yqq software-properties-common unzip cmake
RUN apt-get update -yqq && apt-get install -yqq software-properties-common unzip cmake > /dev/null

RUN apt-get install -yqq libgcrypt11-dev python nginx
RUN apt-get install -yqq libgcrypt11-dev python nginx > /dev/null

WORKDIR /installs

Expand All @@ -13,14 +13,14 @@ ENV BACKNAME=cppcms
ENV CPPCMS_HOME=/installs/$BACKNAME-$CPPCMS_VERSION
ENV CPPCMSROOT=${CPPCMS_HOME}-install

RUN wget -q https://download.sourceforge.net/project/cppcms/$BACKNAME/$CPPCMS_VERSION-rc1/$BACKNAME-$CPPCMS_VERSION.tar.bz2
RUN tar xf $BACKNAME-$CPPCMS_VERSION.tar.bz2
RUN wget -q https://download.sourceforge.net/project/cppcms/$BACKNAME/$CPPCMS_VERSION-rc1/$BACKNAME-$CPPCMS_VERSION.tar.bz2 --quiet
RUN tar xf $BACKNAME-$CPPCMS_VERSION.tar.bz2 > /dev/null

RUN cd $BACKNAME-$CPPCMS_VERSION && \
mkdir build && \
cd build && \
cmake -DCMAKE_INSTALL_PREFIX=${CPPCMSROOT} .. && \
make && make install
make --quiet && make install --quiet

ENV CPPCMS_HOME=${CPPCMSROOT}

Expand All @@ -29,13 +29,13 @@ ENV BACKNAME=cppdb
ENV CPPDB_HOME=/installs/$BACKNAME-$CPPDB_VERSION
ENV CPPDBROOT=${CPPDB_HOME}-install

RUN wget -q https://download.sourceforge.net/project/cppcms/$BACKNAME/$CPPDB_VERSION/$BACKNAME-$CPPDB_VERSION.tar.bz2
RUN tar xf $BACKNAME-$CPPDB_VERSION.tar.bz2
RUN wget -q https://download.sourceforge.net/project/cppcms/$BACKNAME/$CPPDB_VERSION/$BACKNAME-$CPPDB_VERSION.tar.bz2 --quiet
RUN tar xf $BACKNAME-$CPPDB_VERSION.tar.bz2 --quiet

RUN cd $BACKNAME-$CPPDB_VERSION && \
mkdir build && cd build && \
cmake -DCMAKE_INSTALL_PREFIX=${CPPDBROOT} .. && \
make && make install
make --quiet && make install --quiet

ENV CPPDB_HOME=${CPPDBROOT}

Expand All @@ -47,7 +47,7 @@ COPY config-nginx-postgresql.json config-nginx-postgresql.json
COPY Makefile Makefile
COPY nginx.conf nginx.conf

RUN make
RUN make --quiet

EXPOSE 8080

Expand Down
18 changes: 9 additions & 9 deletions frameworks/C++/cppcms/cppcms.dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
FROM buildpack-deps:xenial

RUN apt-get update -yqq && apt-get install -yqq software-properties-common unzip cmake
RUN apt-get update -yqq && apt-get install -yqq software-properties-common unzip cmake > /dev/null

RUN apt-get install -yqq libgcrypt11-dev python nginx
RUN apt-get install -yqq libgcrypt11-dev python nginx > /dev/null

WORKDIR /installs

Expand All @@ -11,14 +11,14 @@ ENV BACKNAME=cppcms
ENV CPPCMS_HOME=/installs/$BACKNAME-$CPPCMS_VERSION
ENV CPPCMSROOT=${CPPCMS_HOME}-install

RUN wget -q https://download.sourceforge.net/project/cppcms/$BACKNAME/$CPPCMS_VERSION-rc1/$BACKNAME-$CPPCMS_VERSION.tar.bz2
RUN tar xf $BACKNAME-$CPPCMS_VERSION.tar.bz2
RUN wget -q https://download.sourceforge.net/project/cppcms/$BACKNAME/$CPPCMS_VERSION-rc1/$BACKNAME-$CPPCMS_VERSION.tar.bz2 --quiet
RUN tar xf $BACKNAME-$CPPCMS_VERSION.tar.bz2 > /dev/null

RUN cd $BACKNAME-$CPPCMS_VERSION && \
mkdir build && \
cd build && \
cmake -DCMAKE_INSTALL_PREFIX=${CPPCMSROOT} .. && \
make && make install
make --quiet && make install --quiet

ENV CPPCMS_HOME=${CPPCMSROOT}

Expand All @@ -27,13 +27,13 @@ ENV BACKNAME=cppdb
ENV CPPDB_HOME=/installs/$BACKNAME-$CPPDB_VERSION
ENV CPPDBROOT=${CPPDB_HOME}-install

RUN wget -q https://download.sourceforge.net/project/cppcms/$BACKNAME/$CPPDB_VERSION/$BACKNAME-$CPPDB_VERSION.tar.bz2
RUN tar xf $BACKNAME-$CPPDB_VERSION.tar.bz2
RUN wget -q https://download.sourceforge.net/project/cppcms/$BACKNAME/$CPPDB_VERSION/$BACKNAME-$CPPDB_VERSION.tar.bz2 --quiet
RUN tar xf $BACKNAME-$CPPDB_VERSION.tar.bz2 > /dev/null

RUN cd $BACKNAME-$CPPDB_VERSION && \
mkdir build && cd build && \
cmake -DCMAKE_INSTALL_PREFIX=${CPPDBROOT} .. && \
make && make install
make --quiet && make install --quiet

ENV CPPDB_HOME=${CPPDBROOT}

Expand All @@ -45,7 +45,7 @@ COPY config-nginx-mysql.json config-nginx-mysql.json
COPY Makefile Makefile
COPY nginx.conf nginx.conf

RUN make
RUN make --quiet

EXPOSE 8080

Expand Down
6 changes: 3 additions & 3 deletions frameworks/C++/cuehttp/cuehttp.dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM ubuntu:18.04

RUN apt-get update -yqq
RUN apt-get install -yqq g++-7 cmake git libboost-all-dev
RUN apt-get install -yqq g++-7 cmake git libboost-all-dev > /dev/null

ENV CUEHTTP=/cuehttp

Expand All @@ -10,9 +10,9 @@ RUN git clone https://github.com/xcyl/cuehttp.git

WORKDIR /cuehttp

RUN git checkout a7f5a4c935e22d110b70c5928c8ea2ce4dcbeeb5
RUN git checkout a7f5a4c935e22d110b70c5928c8ea2ce4dcbeeb5 > /dev/null

WORKDIR /cuehttp/examples/plaintext
RUN mkdir build && cd build && cmake .. && make -j8
RUN mkdir build && cd build && cmake .. && make -j8 --quiet
EXPOSE 8080
CMD ./build/plaintext
4 changes: 2 additions & 2 deletions frameworks/C++/cutelyst/cutelyst-nginx-my.dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM ubuntu:22.04

RUN apt-get update -qq && \
apt-get install -yqq locales wget build-essential
RUN apt-get update -qq > /dev/null && \
apt-get install -yqq locales wget build-essential > /dev/null

RUN locale-gen en_US.UTF-8
ENV LANG en_US.UTF-8
Expand Down
4 changes: 2 additions & 2 deletions frameworks/C++/cutelyst/cutelyst-nginx-pg.dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM ubuntu:22.04

RUN apt-get update -qq && \
apt-get install -yqq locales wget build-essential
RUN apt-get update -qq > /dev/null && \
apt-get install -yqq locales wget build-essential > /dev/null

RUN locale-gen en_US.UTF-8
ENV LANG en_US.UTF-8
Expand Down
4 changes: 2 additions & 2 deletions frameworks/C++/cutelyst/cutelyst-nginx.dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM ubuntu:22.04

RUN apt-get update -qq && \
apt-get install -yqq locales wget build-essential
RUN apt-get update -qq > /dev/null && \
apt-get install -yqq locales wget build-essential > /dev/null

RUN locale-gen en_US.UTF-8
ENV LANG en_US.UTF-8
Expand Down
4 changes: 2 additions & 2 deletions frameworks/C++/cutelyst/cutelyst-pf-apg-batch.dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM ubuntu:22.04

RUN apt-get update -qq && \
apt-get install -yqq locales wget build-essential
RUN apt-get update -qq > /dev/null && \
apt-get install -yqq locales wget build-essential > /dev/null

RUN locale-gen en_US.UTF-8
ENV LANG en_US.UTF-8
Expand Down
4 changes: 2 additions & 2 deletions frameworks/C++/cutelyst/cutelyst-pf-apg.dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM ubuntu:22.04

RUN apt-get update -qq && \
apt-get install -yqq locales wget build-essential
RUN apt-get update -qq > /dev/null && \
apt-get install -yqq locales wget build-essential > /dev/null

RUN locale-gen en_US.UTF-8
ENV LANG en_US.UTF-8
Expand Down
4 changes: 2 additions & 2 deletions frameworks/C++/cutelyst/cutelyst-pf-my.dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM ubuntu:22.04

RUN apt-get update -qq && \
apt-get install -yqq locales wget build-essential
RUN apt-get update -qq > /dev/null && \
apt-get install -yqq locales wget build-essential > /dev/null

RUN locale-gen en_US.UTF-8
ENV LANG en_US.UTF-8
Expand Down
Loading
Loading