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 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
77WORKDIR /src
88RUN 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
2222FROM builder AS runner
2323WORKDIR /app
You can’t perform that action at this time.
0 commit comments