Skip to content

Commit

Permalink
Fix intl PHP extension build
Browse files Browse the repository at this point in the history
  • Loading branch information
mpdude authored May 27, 2024
1 parent 7ef812b commit 2e05e6e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
FROM php:8-cli-alpine as build-extensions
RUN docker-php-ext-install pcntl posix intl
RUN docker-php-ext-install pcntl posix
RUN apk add icu-dev
RUN docker-php-ext-configure intl && docker-php-ext-install intl

FROM composer:2 as composer-fetch
ARG PSALM_VERSION=*
Expand Down

0 comments on commit 2e05e6e

Please sign in to comment.