2017-03-14 15:05:22 +01:00
|
|
|
#
|
|
|
|
#--------------------------------------------------------------------------
|
|
|
|
# Image Setup
|
|
|
|
#--------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
|
2017-08-16 11:21:04 +02:00
|
|
|
FROM php:7.1-alpine
|
2017-03-14 15:05:22 +01:00
|
|
|
|
2017-03-26 09:56:55 +02:00
|
|
|
MAINTAINER Mahmoud Zalt <mahmoud@zalt.me>
|
|
|
|
|
2017-08-16 11:21:04 +02:00
|
|
|
RUN apk --update add wget \
|
|
|
|
curl \
|
|
|
|
git \
|
|
|
|
build-base \
|
|
|
|
libmemcached-dev \
|
|
|
|
libmcrypt-dev \
|
|
|
|
libxml2-dev \
|
|
|
|
zlib-dev \
|
|
|
|
autoconf \
|
|
|
|
cyrus-sasl-dev \
|
|
|
|
libgsasl-dev \
|
|
|
|
supervisor
|
|
|
|
|
|
|
|
RUN docker-php-ext-install mysqli mbstring pdo pdo_mysql mcrypt tokenizer xml
|
|
|
|
RUN pecl channel-update pecl.php.net && pecl install memcached && docker-php-ext-enable memcached
|
|
|
|
|
2017-10-29 13:54:05 +01:00
|
|
|
# Install PostgreSQL drivers:
|
|
|
|
ARG INSTALL_PGSQL=false
|
|
|
|
RUN if [ ${INSTALL_PGSQL} = true ]; then \
|
|
|
|
apk --update add postgresql-dev \
|
|
|
|
&& docker-php-ext-install pdo_pgsql \
|
|
|
|
;fi
|
|
|
|
|
2017-08-16 11:21:04 +02:00
|
|
|
RUN rm /var/cache/apk/* \
|
|
|
|
&& mkdir -p /var/www
|
|
|
|
|
2017-03-14 15:05:22 +01:00
|
|
|
#
|
|
|
|
#--------------------------------------------------------------------------
|
|
|
|
# Optional Supervisord Configuration
|
|
|
|
#--------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# Modify the ./supervisor.conf file to match your App's requirements.
|
|
|
|
# Make sure you rebuild your container with every change.
|
|
|
|
#
|
2017-08-16 11:21:04 +02:00
|
|
|
|
2017-08-15 23:33:51 +02:00
|
|
|
COPY supervisord.conf /etc/supervisord.conf
|
2017-03-14 15:05:22 +01:00
|
|
|
|
2017-08-16 11:21:04 +02:00
|
|
|
ENTRYPOINT ["/usr/bin/supervisord", "-n", "-c", "/etc/supervisord.conf"]
|
|
|
|
|
2017-03-14 15:05:22 +01:00
|
|
|
#
|
|
|
|
#--------------------------------------------------------------------------
|
|
|
|
# Optional Software's Installation
|
|
|
|
#--------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# If you need to modify this image, feel free to do it right here.
|
|
|
|
#
|
2017-08-16 11:21:04 +02:00
|
|
|
# -- Your awesome modifications go here -- #
|
2017-03-14 15:05:22 +01:00
|
|
|
|
2018-02-17 09:26:46 +01:00
|
|
|
#
|
|
|
|
#--------------------------------------------------------------------------
|
|
|
|
# Check PHP version
|
|
|
|
#--------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
|
|
|
|
RUN php -v | head -n 1 | grep -q "PHP 7.1."
|
2017-03-14 15:05:22 +01:00
|
|
|
|
|
|
|
#
|
|
|
|
#--------------------------------------------------------------------------
|
|
|
|
# Final Touch
|
|
|
|
#--------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
|
2017-03-17 01:03:04 +01:00
|
|
|
WORKDIR /etc/supervisor/conf.d/
|