Added required dependencies for alpine
This commit is contained in:
parent
a30156fa00
commit
390657b926
|
@ -37,6 +37,14 @@ RUN --mount=type=cache,target=/var/cache/apk \
|
||||||
RUN --mount=type=cache,target=/var/cache/apk \
|
RUN --mount=type=cache,target=/var/cache/apk \
|
||||||
apk add --update php${PHP_VERSION}-json@testing; exit 0
|
apk add --update php${PHP_VERSION}-json@testing; exit 0
|
||||||
|
|
||||||
|
# Install php83-iconv
|
||||||
|
RUN --mount=type=cache,target=/var/cache/apk \
|
||||||
|
apk add --update php${PHP_VERSION}-iconv; exit 0
|
||||||
|
|
||||||
|
# Install php83-iconv from testing if main or community doesn't exists
|
||||||
|
RUN --mount=type=cache,target=/var/cache/apk \
|
||||||
|
apk add --update php${PHP_VERSION}-iconv@testing; exit 0
|
||||||
|
|
||||||
# DOWNLOAD AND INSTALL COMPOSER
|
# DOWNLOAD AND INSTALL COMPOSER
|
||||||
ADD https://getcomposer.org/installer ./composer-setup.php
|
ADD https://getcomposer.org/installer ./composer-setup.php
|
||||||
RUN php composer-setup.php --version=${COMPOSER_VERSION} && mv composer.phar /usr/local/bin/composer && rm -f ./composer-setup.php
|
RUN php composer-setup.php --version=${COMPOSER_VERSION} && mv composer.phar /usr/local/bin/composer && rm -f ./composer-setup.php
|
||||||
|
|
Reference in New Issue