Skip to content

Commit e19a3d6

Browse files
committed
fix the installation of ps
1 parent 448fb37 commit e19a3d6

2 files changed

Lines changed: 5 additions & 3 deletions

File tree

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@ The official Drupal Docker library is optimized for production. Therefore, it do
2626
- phpredis
2727
- mhsendmail (for Mailhog)
2828
- gpg
29+
- pv
30+
- ps (Required by Antigravity)
2931

3032
## Distribution supported
3133

frankenphp/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
FROM dunglas/frankenphp:1-php8.4
22

33
# install the PHP extensions we need
4+
# procps is required for Google Antigravity
45
RUN apt-get update \
5-
&& apt-get install -y git mariadb-client wget nano pv gpg \
6+
&& apt-get install -y git mariadb-client wget nano pv gpg procps \
67
&& rm -rf /var/lib/apt/lists/*
78

89
RUN install-php-extensions \
@@ -18,8 +19,7 @@ COPY --from=drupal:php8.4 /usr/local/etc/php/conf.d/* /usr/local/etc/php/conf.d/
1819
COPY --from=composer/composer:2-bin /composer /usr/local/bin/
1920

2021
# install Xdebug, from https://xdebug.org/docs/install
21-
# procps is required for Google Antigravity
22-
RUN pecl install xdebug procps \
22+
RUN pecl install xdebug \
2323
&& docker-php-ext-enable xdebug
2424

2525
# enable Xdebug remote debugging

0 commit comments

Comments
 (0)