Fix broken builds

This commit is contained in:
cytopia
2021-05-16 13:03:39 +02:00
parent 89d71a694b
commit d903951329
27 changed files with 128 additions and 64 deletions

View File

@@ -312,14 +312,6 @@ RUN set -eux \
&& true
# -------------------- Installing PHP Extension: opcache --------------------
RUN set -eux \
# Installation: Generic
# Type: Built-in extension
&& docker-php-ext-install -j$(getconf _NPROCESSORS_ONLN) opcache \
&& true
# -------------------- Installing PHP Extension: pcntl --------------------
RUN set -eux \
# Installation: Generic
@@ -397,6 +389,8 @@ RUN set -eux \
&& pecl install psr \
# Enabling
&& docker-php-ext-enable psr \
# Generic post-command
&& echo 'true' \
&& true
@@ -676,6 +670,8 @@ RUN set -eux \
&& ORACLE_VERSION_FULL="$( echo "${ORACLE_HREF}" | grep -Eo 'basiclite-[-.0-9]+' | sed -e 's/basiclite-//g' -e 's/\.$//g' )" \
&& (ln -sf /usr/lib/oracle/${ORACLE_VERSION_MAJOR}/client64/lib/*.so* /usr/lib/ || true) \
\
# ---------- psr ----------
&& echo 'true' \
&& true
@@ -768,8 +764,6 @@ RUN set -eux \
&& php-fpm -m | grep -oiE '^oauth$' \
&& php -m | grep -oiE '^oci8$' \
&& php-fpm -m | grep -oiE '^oci8$' \
&& php -m | grep -oiE '^Zend Opcache$' \
&& php-fpm -m | grep -oiE '^Zend Opcache$' \
&& php -m | grep -oiE '^openssl$' \
&& php-fpm -m | grep -oiE '^openssl$' \
&& php -m | grep -oiE '^pcntl$' \