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

Fix: install missing packages #1085

Draft
wants to merge 21 commits into
base: develop
Choose a base branch
from
Draft
Changes from 1 commit
Commits
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
Prev Previous commit
Next Next commit
compile cmake with all cores available
thanodnl committed Nov 10, 2023
commit 9123802bf2d6b481ab6d4e2e3caacdf991584666
4 changes: 2 additions & 2 deletions dockerfiles/ubuntu-jammy-all/Dockerfile
Original file line number Diff line number Diff line change
@@ -113,8 +113,8 @@ RUN patch `which pg_buildext` < /make_pg_buildext_parallel.patch
RUN wget https://github.com/Kitware/CMake/releases/download/v3.22.2/cmake-3.22.2.tar.gz && \
tar -zxvf cmake-3.22.2.tar.gz && \
cd cmake-3.22.2 && ./bootstrap && \
make && \
make install && \
MAKEFLAGS="-j $(nproc)" make && \
MAKEFLAGS="-j $(nproc)" make install && \
rm -f cmake-3.22.2.tar.gz && \
rm -rf cmake-3.22.2