Skip to content

Commit 1a5600f

Browse files
authored
Merge pull request #73 from devilbox/release-0.56
WIP: Use latest stable PHP 7.3 base image
2 parents 66fa1c1 + a4bcf2b commit 1a5600f

File tree

5 files changed

+3
-15
lines changed

5 files changed

+3
-15
lines changed

Dockerfiles/base/Dockerfile-7.3

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Auto-generated via Ansible: edit build/ansible/DOCKERFILES/Dockerfile-base.j2 instead.
2-
FROM php:7.3-rc-fpm
2+
FROM php:7.3-fpm
33
MAINTAINER "cytopia" <[email protected]>
44

55

Dockerfiles/mods/Dockerfile-7.3

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ ENV BUILD_DEPS \
3535
libkrb5-dev \
3636
libldap2-dev \
3737
libmagickwand-dev \
38-
libmcrypt-dev \
3938
libmemcached-dev \
4039
libnghttp2-dev \
4140
libpng-dev \
@@ -68,7 +67,6 @@ ENV RUN_DEPS \
6867
libicu57 \
6968
libjpeg62-turbo \
7069
libmagickwand-6.q16-3 \
71-
libmcrypt4 \
7270
libmemcachedutil2 \
7371
libnghttp2-14 \
7472
libpng16-16 \
@@ -186,12 +184,6 @@ RUN set -x \
186184
&& (rm -rf /usr/local/lib/php/test/ldap || true) \
187185
&& (rm -rf /usr/local/lib/php/doc/ldap || true) \
188186
\
189-
# ---- Installing PHP Extension: mcrypt ----
190-
&& pecl install mcrypt-1.0.1 \
191-
&& docker-php-ext-enable mcrypt \
192-
&& (rm -rf /usr/local/lib/php/test/mcrypt || true) \
193-
&& (rm -rf /usr/local/lib/php/doc/mcrypt || true) \
194-
\
195187
# ---- Installing PHP Extension: memcached ----
196188
&& git clone https://github.com/php-memcached-dev/php-memcached /tmp/memcached \
197189
&& cd /tmp/memcached \
@@ -461,8 +453,6 @@ RUN set -x \
461453
&& php-fpm -m | grep -oiE '^libxml$' \
462454
&& php -m | grep -oiE '^mbstring$' \
463455
&& php-fpm -m | grep -oiE '^mbstring$' \
464-
&& php -m | grep -oiE '^mcrypt$' \
465-
&& php-fpm -m | grep -oiE '^mcrypt$' \
466456
&& php -m | grep -oiE '^memcached$' \
467457
&& php-fpm -m | grep -oiE '^memcached$' \
468458
&& php -m | grep -oiE '^mongodb$' \

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -566,7 +566,7 @@ Check out this table to see which Docker image provides what PHP modules.
566566
<tr>
567567
<th>7.3</th>
568568
<td id="73-base">Core, ctype, curl, date, dom, fileinfo, filter, ftp, hash, iconv, json, libxml, mbstring, mysqlnd, openssl, pcre, PDO, pdo_sqlite, Phar, posix, readline, Reflection, session, SimpleXML, sodium, SPL, sqlite3, standard, tokenizer, xml, xmlreader, xmlwriter, zlib</td>
569-
<td id="73-mods">apcu, bcmath, bz2, calendar, Core, ctype, curl, date, dba, dom, enchant, exif, fileinfo, filter, ftp, gd, gettext, gmp, hash, iconv, igbinary, imagick, imap, interbase, intl, json, ldap, libxml, mbstring, mcrypt, memcached, mongodb, mysqli, mysqlnd, openssl, pcntl, pcre, PDO, pdo_dblib, PDO_Firebird, pdo_mysql, pdo_pgsql, pdo_sqlite, pgsql, Phar, posix, pspell, rdkafka, readline, recode, redis, Reflection, session, shmop, SimpleXML, snmp, soap, sockets, sodium, SPL, sqlite3, standard, swoole, sysvmsg, sysvsem, sysvshm, tidy, tokenizer, uploadprogress, wddx, xdebug, xml, xmlreader, xmlrpc, xmlwriter, xsl, Zend OPcache, zip, zlib</td>
569+
<td id="73-mods">apcu, bcmath, bz2, calendar, Core, ctype, curl, date, dba, dom, enchant, exif, fileinfo, filter, ftp, gd, gettext, gmp, hash, iconv, igbinary, imagick, imap, interbase, intl, json, ldap, libxml, mbstring, memcached, mongodb, mysqli, mysqlnd, openssl, pcntl, pcre, PDO, pdo_dblib, PDO_Firebird, pdo_mysql, pdo_pgsql, pdo_sqlite, pgsql, Phar, posix, pspell, rdkafka, readline, recode, redis, Reflection, session, shmop, SimpleXML, snmp, soap, sockets, sodium, SPL, sqlite3, standard, swoole, sysvmsg, sysvsem, sysvshm, tidy, tokenizer, uploadprogress, wddx, xdebug, xml, xmlreader, xmlrpc, xmlwriter, xsl, Zend OPcache, zip, zlib</td>
570570
</tr>
571571
<tr>
572572
<th>7.4</th>

build/ansible/DOCKERFILES/Dockerfile-base.j2

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@
33
FROM devilbox/php-fpm-5.2
44
{% elif php_version == 5.3 %}
55
FROM devilbox/php-fpm-5.3
6-
{% elif php_version == 7.3 %}
7-
FROM php:{{ php_version }}-rc-fpm
86
{% elif php_version == 7.4 %}
97
FROM devilbox/php-fpm-7.4
108
{% else %}

build/ansible/group_vars/all.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1025,7 +1025,7 @@ extensions_available:
10251025
all:
10261026
type: builtin
10271027
mcrypt:
1028-
disabled: [7.4]
1028+
disabled: [7.3, 7.4]
10291029
7.2:
10301030
type: pecl
10311031
version: 1.0.1

0 commit comments

Comments
 (0)