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

@@ -501,6 +501,8 @@ RUN set -eux \
&& pecl install psr \
# Enabling
&& docker-php-ext-enable psr \
# Generic post-command
&& echo 'true' \
&& true
@@ -516,6 +518,8 @@ RUN set -eux \
&& cd build && ./install \
# Enabling
&& docker-php-ext-enable phalcon \
# Generic post-command
&& echo 'true' \
&& true
@@ -643,10 +647,10 @@ RUN set -eux \
# -------------------- Installing PHP Extension: swoole --------------------
RUN set -eux \
# Installation: Generic
# Installation: Version specific
# Type: PECL extension
# Custom: Pecl command
&& yes yes | pecl install swoole \
# Default: Pecl command
&& pecl install swoole-4.4.26 \
# Enabling
&& docker-php-ext-enable swoole \
&& true
@@ -924,6 +928,10 @@ 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' \
# ---------- phalcon ----------
&& echo 'true' \
&& true