add composer php in container

This commit is contained in:
andrey
2023-08-14 18:17:57 +03:00
parent df58e8414c
commit eabf4dc249
5 changed files with 14 additions and 2 deletions
+5 -1
View File
@@ -2,6 +2,10 @@ FROM php:8.1.22-apache
COPY 000-default.conf /etc/apache2/sites-enabled/
RUN apt-get update && apt-get install -y libpq-dev git && docker-php-ext-install pdo pdo_pgsql
RUN apt-get update && apt-get install -y libpq-dev git && docker-php-ext-install pdo pdo_pgsql
RUN pecl install xdebug && docker-php-ext-enable xdebug
COPY xdebug.ini /usr/local/etc/php/conf.d/xdebug.ini
RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/bin --filename=composer