Skip to content

Commit b125f08

Browse files
authored
Update userver.dockerfile silent
1 parent 79b39d9 commit b125f08

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

frameworks/C++/userver/userver.dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
FROM ghcr.io/userver-framework/ubuntu-22.04-userver-pg AS builder
22

3-
RUN apt update && \
4-
apt install -y lsb-release wget software-properties-common gnupg && \
5-
wget https://apt.llvm.org/llvm.sh && chmod +x llvm.sh && ./llvm.sh 16
3+
RUN apt update > /dev/null && \
4+
apt install -y lsb-release wget software-properties-common gnupg > /dev/null && \
5+
wget https://apt.llvm.org/llvm.sh --quiet && chmod +x llvm.sh && ./llvm.sh 16
66

77
WORKDIR /src
88
RUN git clone https://github.com/userver-framework/userver.git && \
@@ -17,7 +17,7 @@ RUN mkdir build && cd build && \
1717
-DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_FLAGS="-march=native" -DCMAKE_C_FLAGS="-march=native" \
1818
-DCMAKE_CXX_COMPILER=clang++-16 -DCMAKE_C_COMPILER=clang-16 -DUSERVER_USE_LD=lld-16 \
1919
-DUSERVER_LTO=0 .. && \
20-
make -j $(nproc)
20+
make -j $(nproc) --quiet
2121

2222
FROM builder AS runner
2323
WORKDIR /app

0 commit comments

Comments
 (0)