diff --git a/8.2/sid/cli/Dockerfile b/8.2/sid/cli/Dockerfile index 4152131e..5b5b6ed9 100644 --- a/8.2/sid/cli/Dockerfile +++ b/8.2/sid/cli/Dockerfile @@ -129,6 +129,7 @@ RUN set -eux; \ fi; \ patch -p1 < /latomic.patch; \ rm /latomic.patch; \ + ./buildconf; \ ./configure \ --build="$gnuArch" \ --with-config-file-path="$PHP_INI_DIR" \ diff --git a/8.2/sid/fpm/Dockerfile b/8.2/sid/fpm/Dockerfile index 32e131cc..ce9d799f 100644 --- a/8.2/sid/fpm/Dockerfile +++ b/8.2/sid/fpm/Dockerfile @@ -126,6 +126,9 @@ RUN set -eux; \ if [ ! -d /usr/include/curl ]; then \ ln -sT "/usr/include/$debMultiarch/curl" /usr/local/include/curl; \ fi; \ + patch -p1 < /latomic.patch; \ + rm /latomic.patch; \ + ./buildconf; \ ./configure \ --build="$gnuArch" \ --with-config-file-path="$PHP_INI_DIR" \