405067d4af
Because there's some difference in installing some libraries between PHP 5 and PHP 7. There must be multiple php dockerfiles. For that I created 3 docker files each of a different version, this will make it easy for the users to switch between the PHP version by just editing the docker-compose file and not touching the dockerfiles.
24 lines
442 B
Plaintext
24 lines
442 B
Plaintext
FROM php:5.5-fpm
|
|
|
|
MAINTAINER Mahmoud Zalt <mahmoud@zalt.me>
|
|
|
|
ADD ./laravel.ini /usr/local/etc/php/conf.d
|
|
ADD ./laravel.pool.conf /usr/local/etc/php-fpm.d/
|
|
|
|
RUN apt-get update && apt-get install \
|
|
libpq-dev -y \
|
|
curl
|
|
|
|
# Install extensions using the helper script provided by the base image
|
|
RUN docker-php-ext-install \
|
|
pdo_mysql \
|
|
pdo_pgsql
|
|
|
|
RUN usermod -u 1000 www-data
|
|
|
|
WORKDIR /var/www/laravel
|
|
|
|
CMD ["php-fpm"]
|
|
|
|
EXPOSE 9000
|