Skip to content

Commit 9d94103

Browse files
committed
fix issue #61: error loading shared library liburing.so.2
1 parent c86b4f9 commit 9d94103

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

Dockerfile.alpine.twig

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ COPY --from=composer:{{ composer.version }} /usr/bin/composer /usr/bin/
55
RUN \
66
set -ex && \
77
apk update && \
8-
apk add --no-cache libstdc++ libpq && \
9-
apk add --no-cache --virtual .build-deps $PHPIZE_DEPS curl-dev linux-headers brotli-dev liburing-dev postgresql-dev openssl-dev pcre-dev pcre2-dev sqlite-dev zlib-dev && \
8+
apk add --no-cache libstdc++ libpq liburing-dev && \
9+
apk add --no-cache --virtual .build-deps $PHPIZE_DEPS curl-dev linux-headers brotli-dev postgresql-dev openssl-dev pcre-dev pcre2-dev sqlite-dev zlib-dev && \
1010
# PHP extension pdo_mysql is included since 4.8.12+ and 5.0.1+.
1111
docker-php-ext-install pdo_mysql && \
1212
{%~ if php_extensions is not empty %}

dockerfiles/6.0.2/php8.1/alpine/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ COPY --from=composer:2.8.12 /usr/bin/composer /usr/bin/
55
RUN \
66
set -ex && \
77
apk update && \
8-
apk add --no-cache libstdc++ libpq && \
9-
apk add --no-cache --virtual .build-deps $PHPIZE_DEPS curl-dev linux-headers brotli-dev liburing-dev postgresql-dev openssl-dev pcre-dev pcre2-dev sqlite-dev zlib-dev && \
8+
apk add --no-cache libstdc++ libpq liburing-dev && \
9+
apk add --no-cache --virtual .build-deps $PHPIZE_DEPS curl-dev linux-headers brotli-dev postgresql-dev openssl-dev pcre-dev pcre2-dev sqlite-dev zlib-dev && \
1010
# PHP extension pdo_mysql is included since 4.8.12+ and 5.0.1+.
1111
docker-php-ext-install pdo_mysql && \
1212
pecl channel-update pecl.php.net && \

dockerfiles/6.0.2/php8.2/alpine/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ COPY --from=composer:2.8.12 /usr/bin/composer /usr/bin/
55
RUN \
66
set -ex && \
77
apk update && \
8-
apk add --no-cache libstdc++ libpq && \
9-
apk add --no-cache --virtual .build-deps $PHPIZE_DEPS curl-dev linux-headers brotli-dev liburing-dev postgresql-dev openssl-dev pcre-dev pcre2-dev sqlite-dev zlib-dev && \
8+
apk add --no-cache libstdc++ libpq liburing-dev && \
9+
apk add --no-cache --virtual .build-deps $PHPIZE_DEPS curl-dev linux-headers brotli-dev postgresql-dev openssl-dev pcre-dev pcre2-dev sqlite-dev zlib-dev && \
1010
# PHP extension pdo_mysql is included since 4.8.12+ and 5.0.1+.
1111
docker-php-ext-install pdo_mysql && \
1212
pecl channel-update pecl.php.net && \

dockerfiles/6.0.2/php8.3/alpine/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ COPY --from=composer:2.8.12 /usr/bin/composer /usr/bin/
55
RUN \
66
set -ex && \
77
apk update && \
8-
apk add --no-cache libstdc++ libpq && \
9-
apk add --no-cache --virtual .build-deps $PHPIZE_DEPS curl-dev linux-headers brotli-dev liburing-dev postgresql-dev openssl-dev pcre-dev pcre2-dev sqlite-dev zlib-dev && \
8+
apk add --no-cache libstdc++ libpq liburing-dev && \
9+
apk add --no-cache --virtual .build-deps $PHPIZE_DEPS curl-dev linux-headers brotli-dev postgresql-dev openssl-dev pcre-dev pcre2-dev sqlite-dev zlib-dev && \
1010
# PHP extension pdo_mysql is included since 4.8.12+ and 5.0.1+.
1111
docker-php-ext-install pdo_mysql && \
1212
pecl channel-update pecl.php.net && \

dockerfiles/6.0.2/php8.4/alpine/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ COPY --from=composer:2.8.12 /usr/bin/composer /usr/bin/
55
RUN \
66
set -ex && \
77
apk update && \
8-
apk add --no-cache libstdc++ libpq && \
9-
apk add --no-cache --virtual .build-deps $PHPIZE_DEPS curl-dev linux-headers brotli-dev liburing-dev postgresql-dev openssl-dev pcre-dev pcre2-dev sqlite-dev zlib-dev && \
8+
apk add --no-cache libstdc++ libpq liburing-dev && \
9+
apk add --no-cache --virtual .build-deps $PHPIZE_DEPS curl-dev linux-headers brotli-dev postgresql-dev openssl-dev pcre-dev pcre2-dev sqlite-dev zlib-dev && \
1010
# PHP extension pdo_mysql is included since 4.8.12+ and 5.0.1+.
1111
docker-php-ext-install pdo_mysql && \
1212
pecl channel-update pecl.php.net && \

0 commit comments

Comments
 (0)