forked from edyan/php-fpm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile-5.4
108 lines (98 loc) · 4.97 KB
/
Dockerfile-5.4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
FROM debian:wheezy-slim
ARG DEBIAN_FRONTEND=noninteractive
# Set a default conf for apt-get install
RUN echo 'apt::install-recommends "false";' > /etc/apt/apt.conf.d/no-install-recommends && \
# Set right repos
echo "deb http://archive.debian.org/debian wheezy main contrib" > /etc/apt/sources.list && \
echo "deb http://archive.debian.org/debian wheezy-backports main contrib" >> /etc/apt/sources.list && \
# Upgrade the system + Install all packages
apt-get update && \
apt-get upgrade -y && \
# Because else it doesn't work ;)
apt-get install --reinstall -y --force-yes perl-base=5.14.2-21+deb7u3 libc6=2.13-38+deb7u10 libc-bin=2.13-38+deb7u10 && \
apt-get install -y \
# Calling fpm locally
libfcgi0ldbl \
# Manipulate iptables rules (example: block smtps)
iptables \
php-apc \
php5-cli \
php5-curl \
# php5-ffmpeg \
php5-fpm \
php5-gd \
php5-geoip \
php5-imagick \
php5-imap \
php5-intl \
php5-json \
php5-ldap \
php5-mcrypt \
php5-memcache \
php5-memcached \
php5-mysql \
php5-odbc \
php5-pgsql \
php5-sqlite \
php5-tidy \
php5-xdebug \
php5-xsl && \
# Set a symlink to simplify the configuration, as we use a single php version
mkdir -p /etc/php && ln -s /etc/php5 /etc/php/current && \
# Log to stdout
sed -i 's/^error_log.*/error_log = \/proc\/self\/fd\/2/g' /etc/php/current/fpm/php-fpm.conf && \
echo 'access.log = /proc/self/fd/2' >> /etc/php/current/fpm/php-fpm.conf && \
# Create log dir
mkdir /var/log/php && \
# Now Build
apt-get install -y build-essential php-pear php5-dev libcurl4-openssl-dev pkg-config && \
pecl channel-update pecl.php.net && \
pecl install mongo redis-4.3.0 xhprof-0.9.4 && \
echo "extension=mongo.so" > /etc/php/current/mods-available/mongo.ini && \
echo "extension=redis.so" > /etc/php/current/mods-available/redis.ini && \
echo "extension=xhprof.so" > /etc/php/current/mods-available/xhprof.ini && \
mv /etc/php/current/conf.d/imagick.ini /etc/php/current/mods-available/imagick.ini && \
php5enmod mongo redis xhprof imagick && \
# Clean
apt-get purge -y build-essential php-pear php5-dev libcurl4-openssl-dev pkg-config && \
apt-get autoremove -y && \
apt-get autoclean && \
apt-get clean && \
# Empty some directories from all files and hidden files
rm -rf /build /usr/share/php/docs /usr/share/php/tests /tmp/* && \
find /root /var/lib/apt/lists /usr/share/man /usr/share/doc /var/cache /var/log -type f -delete
COPY files/common/php-cli.ini /etc/php/current/cli/conf.d/30-custom-php.ini
COPY files/common/php-fpm.ini /etc/php/current/fpm/conf.d/30-custom-php.ini
COPY files/common/www.conf /etc/php/current/fpm/pool.d/
# For custom Configuration that comes from outside (via a docker compose mount)
RUN mkdir /etc/php/current/fpm/user-conf.d && \
echo "; Default empty file" > /etc/php/current/fpm/user-conf.d/example.conf && \
# Create home for www-data
mkdir /home/www-data && \
chown www-data:www-data /home/www-data && \
usermod -d /home/www-data www-data && \
mkdir -p /run/php && \
chown www-data:www-data /run/php
COPY files/5.x/docker-entrypoint.sh /docker-entrypoint.sh
RUN chmod +x /docker-entrypoint.sh
ENV ENVIRONMENT dev
ENV PHP_ENABLED_MODULES ""
ENV FPM_UID 33
ENV FPM_GID 33
EXPOSE 9000
# At the end as it changes everytime ;)
ARG BUILD_DATE
ARG DOCKER_TAG
ARG VCS_REF
LABEL maintainer="Emmanuel Dyan <[email protected]>" \
org.label-schema.build-date=${BUILD_DATE} \
org.label-schema.name=${DOCKER_TAG} \
org.label-schema.description="Docker PHP Image based on Debian and including main modules" \
org.label-schema.url="https://cloud.docker.com/u/edyan/repository/docker/edyan/php" \
org.label-schema.vcs-url="https://github.com/edyan/docker-php" \
org.label-schema.vcs-ref=${VCS_REF} \
org.label-schema.schema-version="1.0" \
org.label-schema.vendor="edyan" \
org.label-schema.docker.cmd="docker run -d --rm ${DOCKER_TAG}"
ENTRYPOINT ["/docker-entrypoint.sh"]
CMD ["/usr/sbin/php5-fpm", "--allow-to-run-as-root", "-c", "/etc/php/current/fpm", "--nodaemonize"]