FIX: handling of dependencies

This commit is contained in:
Juan Pablo Vial
2022-03-07 12:07:33 -03:00
parent fb8e204f77
commit bc4dd543ae
9 changed files with 30 additions and 27 deletions

View File

@ -1,6 +1,12 @@
FROM php:7.4-fpm
RUN docker-php-ext-install pdo pdo_mysql
RUN apt-get update && apt-get install -y libzip-dev libicu-dev git
RUN docker-php-ext-install pdo pdo_mysql zip intl
RUN pecl install xdebug-3.0.3 \
&& docker-php-ext-enable xdebug
COPY --from=composer /usr/bin/composer /usr/bin/composer
WORKDIR /code