File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -2,7 +2,10 @@ ARG PHP_VERSION=8.4
22
33FROM php:${PHP_VERSION}
44
5- ADD --chmod=0755 https://github.com/mlocati/docker-php-extension-installer/releases/latest/download/install-php-extensions /usr/local/bin/
5+ RUN curl -sSLf \
6+ -o /usr/local/bin/install-php-extensions \
7+ https://github.com/mlocati/docker-php-extension-installer/releases/latest/download/install-php-extensions && \
8+ chmod +x /usr/local/bin/install-php-extensions
69
710RUN install-php-extensions @composer
811
Original file line number Diff line number Diff line change @@ -2,7 +2,10 @@ ARG PHP_VERSION=8.4
22
33FROM php:${PHP_VERSION}-apache
44
5- ADD --chmod=0755 https://github.com/mlocati/docker-php-extension-installer/releases/latest/download/install-php-extensions /usr/local/bin/
5+ RUN curl -sSLf \
6+ -o /usr/local/bin/install-php-extensions \
7+ https://github.com/mlocati/docker-php-extension-installer/releases/latest/download/install-php-extensions && \
8+ chmod +x /usr/local/bin/install-php-extensions
69
710RUN install-php-extensions @composer
811
You can’t perform that action at this time.
0 commit comments