Skip to content

Commit

Permalink
Fixes #1875 - add additional extensions to Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
mrook committed Nov 14, 2024
1 parent 04accd0 commit 5d7efe5
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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/
Expand Down

0 comments on commit 5d7efe5

Please sign in to comment.