Added missing iconv and mbstring for composer to run
This commit is contained in:
parent
c61bbd0775
commit
8e66514189
|
@ -29,7 +29,8 @@ ADD https://github.com/composer/composer/releases/download/${COMPOSER_VERSION}/c
|
||||||
RUN /bin/mkdir -p /app ; \
|
RUN /bin/mkdir -p /app ; \
|
||||||
/sbin/apk add --update --no-cache \
|
/sbin/apk add --update --no-cache \
|
||||||
php${PHP_VER_SHORT} php${PHP_VER_SHORT}-common \
|
php${PHP_VER_SHORT} php${PHP_VER_SHORT}-common \
|
||||||
php${PHP_VER_SHORT}-cli php${PHP_VER_SHORT}-phar ; \
|
php${PHP_VER_SHORT}-cli php${PHP_VER_SHORT}-phar \
|
||||||
|
php${PHP_VER_SHORT}-iconv php${PHP_VER_SHORT}-mbstring ; \
|
||||||
/bin/chmod +x /tmp/setup.sh /usr/local/bin/composer ; \
|
/bin/chmod +x /tmp/setup.sh /usr/local/bin/composer ; \
|
||||||
/bin/sh /tmp/setup.sh; \
|
/bin/sh /tmp/setup.sh; \
|
||||||
/bin/rm -f /tmp/*.sh;
|
/bin/rm -f /tmp/*.sh;
|
||||||
|
|
|
@ -31,7 +31,8 @@ ADD https://github.com/composer/composer/releases/download/${COMPOSER_VERSION}/c
|
||||||
RUN /bin/mkdir -p /app ; \
|
RUN /bin/mkdir -p /app ; \
|
||||||
/sbin/apk add --update --no-cache \
|
/sbin/apk add --update --no-cache \
|
||||||
php${PHP_VER_SHORT} php${PHP_VER_SHORT}-common \
|
php${PHP_VER_SHORT} php${PHP_VER_SHORT}-common \
|
||||||
php${PHP_VER_SHORT}-cli php${PHP_VER_SHORT}-phar ; \
|
php${PHP_VER_SHORT}-cli php${PHP_VER_SHORT}-phar \
|
||||||
|
php${PHP_VER_SHORT}-iconv php${PHP_VER_SHORT}-mbstring ; \
|
||||||
/bin/chmod +x /tmp/setup.sh /usr/local/bin/entrypoint.sh /usr/local/bin/composer; \
|
/bin/chmod +x /tmp/setup.sh /usr/local/bin/entrypoint.sh /usr/local/bin/composer; \
|
||||||
/bin/sh /tmp/setup.sh; \
|
/bin/sh /tmp/setup.sh; \
|
||||||
/bin/rm -f /tmp/*.sh;
|
/bin/rm -f /tmp/*.sh;
|
||||||
|
|
|
@ -3,8 +3,8 @@
|
||||||
PHP_LIST="bcmath,brotli,bz2,calendar,cgi,
|
PHP_LIST="bcmath,brotli,bz2,calendar,cgi,
|
||||||
ctype,curl,dba,dom,embed,
|
ctype,curl,dba,dom,embed,
|
||||||
enchant,exif,fileinfo,ftp,gd,
|
enchant,exif,fileinfo,ftp,gd,
|
||||||
gettext,gmp,iconv,imap,intl,
|
gettext,gmp,imap,intl,
|
||||||
json,ldap,mbstring,opcache,openssl,
|
json,ldap,opcache,openssl,
|
||||||
pcntl,pdo,pear,posix,
|
pcntl,pdo,pear,posix,
|
||||||
pspell,shmop,snmp,soap,sockets,
|
pspell,shmop,snmp,soap,sockets,
|
||||||
sysvmsg,sysvsem,sysvshm,tidy,tokenizer,
|
sysvmsg,sysvsem,sysvshm,tidy,tokenizer,
|
||||||
|
|
Loading…
Reference in New Issue