Merge pull request 'Add intl extension to dockerfile' (#6) from fix/missing-intl-extension into master

Reviewed-on: #6
This commit was merged in pull request #6.
This commit is contained in:
2024-11-17 17:56:57 +01:00

View File

@@ -5,9 +5,10 @@ WORKDIR /usr/src/app
RUN apt-get update && apt-get install -y \ RUN apt-get update && apt-get install -y \
git \ git \
unzip \ unzip \
libicu-dev \
libzip-dev libzip-dev
RUN docker-php-ext-install zip RUN docker-php-ext-install zip intl
RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer