11 lines
329 B
Docker
11 lines
329 B
Docker
|
FROM php:fpm
|
||
|
|
||
|
RUN apt-get update && \
|
||
|
apt-get install -y git zip libxml2-dev
|
||
|
|
||
|
RUN curl --silent --show-error https://getcomposer.org/installer | php && \
|
||
|
mv composer.phar /usr/local/bin/composer
|
||
|
|
||
|
# Uncomment to have mysqli extension installed and enabled
|
||
|
RUN docker-php-ext-install mysqli && docker-php-ext-enable mysqli
|