feature/cierres #25

Open
aldarien wants to merge 446 commits from feature/cierres into develop
143 changed files with 478 additions and 4797 deletions
Showing only changes of commit 2fd1a44984 - Show all commits

View File

@ -2,12 +2,15 @@ FROM php:8.4-fpm
ENV TZ=America/Santiago
ADD --chmod=0755 https://github.com/mlocati/docker-php-extension-installer/releases/latest/download/install-php-extensions /usr/local/bin/
RUN apt-get update && apt-get install -y --no-install-recommends libzip-dev libicu-dev git \
libpng-dev unzip tzdata libxml2-dev \
&& rm -r /var/lib/apt/lists/* \
&& docker-php-ext-install pdo pdo_mysql zip intl gd bcmath dom \
&& pecl install xdebug-3.4.2 http \
&& pecl install xdebug-3.4.2 \
&& docker-php-ext-enable xdebug \
&& install-php-extensions http \
&& echo $TZ > /etc/timezone
COPY ./php-errors.ini /usr/local/etc/php/conf.d/docker-php-errors.ini