Skip to content

Commit

Permalink
Build cmake; fix couchbase install
Browse files Browse the repository at this point in the history
  • Loading branch information
matthiasmullie committed May 29, 2024
1 parent 25b5fc6 commit 0b2839e
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 11 deletions.
10 changes: 9 additions & 1 deletion docker/php.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,15 @@

apt-get update
apt-get install --reinstall -y ca-certificates
apt-get install -y libssl-dev zlib1g-dev libzip-dev libmemcached-dev libpq-dev git cmake
apt-get install -y libssl-dev zlib1g-dev libzip-dev libmemcached-dev libpq-dev git wget

# build cmake; the apt-get version is too old for couchbase
wget https://github.com/Kitware/CMake/releases/download/v3.29.3/cmake-3.29.3.tar.gz -P /tmp
tar -xf /tmp/cmake-3.29.3.tar.gz -C /tmp
cd /tmp/cmake-3.29.3
./configure
make
make install

pecl install -f couchbase
pecl install -f xdebug
Expand Down
10 changes: 0 additions & 10 deletions ruleset.xml

This file was deleted.

0 comments on commit 0b2839e

Please sign in to comment.