Fix all work images

This commit is contained in:
cytopia
2021-05-16 16:49:14 +02:00
parent 59c30b8f24
commit 712ad5c66a
31 changed files with 323 additions and 177 deletions

View File

@@ -504,8 +504,6 @@ RUN set -eux \
&& pecl install psr \
# Enabling
&& docker-php-ext-enable psr \
# Generic post-command
&& echo 'true' \
&& true
@@ -521,8 +519,6 @@ RUN set -eux \
&& cd build && ./install \
# Enabling
&& docker-php-ext-enable phalcon \
# Generic post-command
&& echo 'true' \
&& true
@@ -931,10 +927,6 @@ 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
@@ -1137,6 +1129,15 @@ RUN set -eux \
&& true
# Deactive PSR and Phalcon:
# https://github.com/devilbox/docker-php-fpm/issues/201
RUN set -eux \
&& rm -f /usr/local/etc/php/conf.d/docker-php-ext-phalcon.ini || true \
&& rm -f /usr/local/etc/php/conf.d/docker-php-ext-psr.ini || true \
###
### Ports
###