-
-
Notifications
You must be signed in to change notification settings - Fork 320
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixes #1875 - add additional extensions to Dockerfile
- Loading branch information
Showing
1 changed file
with
6 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,6 +8,12 @@ RUN composer install --optimize-autoloader --prefer-dist --no-progress --no-inte | |
FROM php:8.2-cli-alpine AS phing | ||
MAINTAINER Phing <[email protected]> | ||
|
||
RUN curl -sSLf \ | ||
-o /usr/local/bin/install-php-extensions \ | ||
https://github.com/mlocati/docker-php-extension-installer/releases/latest/download/install-php-extensions && \ | ||
chmod +x /usr/local/bin/install-php-extensions && \ | ||
install-php-extensions gettext intl sockets tidy xsl zip | ||
|
||
WORKDIR /app | ||
|
||
ADD bin/phing* bin/ | ||
|