Skip to content

Commit

Permalink
Install pcntl in docker image as make autoreview fails with absen…
Browse files Browse the repository at this point in the history
…t `SIGINT` const (#1947)

```bash
docker compose run php81 make autoreview
```

didn't work before, because Psalm was failing, complaining `\SIGINT` doesn't exist.

Now it works.
  • Loading branch information
maks-rafalko committed Mar 23, 2024
1 parent af53859 commit 0aa8299
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions devTools/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,12 @@ RUN set -eux; \
apk add --no-cache --virtual .build-deps \
${PHPIZE_DEPS} \
build-base \
libzip-dev \
zlib-dev \
; \
docker-php-ext-configure zip; \
docker-php-ext-install -j$(nproc) \
pcntl \
; \
pecl install xdebug-${XDEBUG_VERSION}; \
pecl clear-cache; \
Expand Down

0 comments on commit 0aa8299

Please sign in to comment.