File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -28,23 +28,23 @@ RUN if [ "$BASEOS" = "bullseye" ]; then \
2828RUN curl -sSLf -o /usr/local/bin/install-php-extensions \
2929 https://github.com/mlocati/docker-php-extension-installer/releases/latest/download/install-php-extensions && \
3030 chmod +x /usr/local/bin/install-php-extensions && \
31- install-php-extensions amqp bcmath bz2 calendar ctype exif intl imap json mbstring ldap mcrypt memcached mongodb mysqli \
32- opcache pdo_mysql pdo_pgsql pgsql redis snmp soap sockets tidy timezonedb uuid vips xsl yaml zip zstd @composer
31+ install-php-extensions amqp bcmath bz2 calendar ctype exif intl imagick imap json mbstring ldap mcrypt memcached mongodb \
32+ mysqli opcache pdo_mysql pdo_pgsql pgsql redis snmp soap sockets tidy timezonedb uuid vips xsl yaml zip zstd @composer
3333
3434# Enable Apache rewrite mod, if applicable
3535RUN if command -v a2enmod; then a2enmod rewrite; fi
3636
37- # Add mcrypt and imagick based on PHP version
38- RUN case "$PHPVERSION" in \
39- 7|8.0|8.1|8.2) \
40- install-php-extensions imagick; \
41- ;; \
42- 8.3) \
43- install-php-extensions imagick/imagick@master; \
44- ;; \
45- *) \
46- ;; \
47- esac
37+ # # Add mcrypt and imagick based on PHP version
38+ # RUN case "$PHPVERSION" in \
39+ # 7|8.0|8.1|8.2) \
40+ # install-php-extensions imagick; \
41+ # ;; \
42+ # 8.3) \
43+ # install-php-extensions imagick/imagick@master; \
44+ # ;; \
45+ # *) \
46+ # ;; \
47+ # esac
4848
4949# Disable AV1 only in armv7
5050RUN case $(uname -m) in \
Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ RUN install-php-extensions \
4242 # File operation extensions
4343 zip bz2 \
4444 # Utility extensions
45- amqp bcmath calendar ctype exif intl imagick imap ldap mbstring \
45+ amqp bcmath calendar ctype exif intl imagick imap ldap mbstring mcrypt \
4646 mongodb snmp tidy timezonedb uuid vips xsl yaml \
4747 # Package manager
4848 @composer
@@ -52,16 +52,16 @@ RUN if command -v a2enmod; then \
5252 a2enmod rewrite headers; \
5353 fi
5454
55- # Add mcrypt based on PHP version
56- RUN case "$PHPVERSION" in \
57- 8.0|8.1|8.2|8.3) \
58- install-php-extensions mcrypt; \
59- ;; \
60- 8.4) \
61- ;; \
62- *) \
63- ;; \
64- esac
55+ # # Add mcrypt based on PHP version
56+ # RUN case "$PHPVERSION" in \
57+ # 8.0|8.1|8.2|8.3) \
58+ # install-php-extensions mcrypt; \
59+ # ;; \
60+ # 8.4) \
61+ # ;; \
62+ # *) \
63+ # ;; \
64+ # esac
6565
6666# Install GD with architecture-specific configuration
6767RUN case $(uname -m) in \
You can’t perform that action at this time.
0 commit comments