-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdockerfilecopy
26 lines (19 loc) · 1.02 KB
/
dockerfilecopy
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
FROM php:8.0.22-fpm-bullseye
ADD https://github.com/mlocati/docker-php-extension-installer/releases/latest/download/install-php-extensions /usr/local/bin/
RUN chmod +x /usr/local/bin/install-php-extensions && \
install-php-extensions gd exif bcmath calendar FFI intl sockets sysvmsg sysvsem sysvshm redis excimer apcu bz2 gettext gmp igbinary imagick imap ldap memcached msgpack mysqli pdo_mysql pspell shmop soap tidy uuid xsl opcache zip
COPY files/www.conf /usr/local/etc/php-fpm.d/www.conf
COPY files/php-fpm.conf /usr/local/etc/php-fpm.conf
RUN mv "$PHP_INI_DIR/php.ini-production" "$PHP_INI_DIR/php.ini" && \
apt-get -y update && \
apt-get -y dist-upgrade && \
apt-get -y install --no-install-recommends \
msmtp \
mailutils \
&& ln -sf /usr/bin/msmtp /usr/sbin/sendmail \
&& chown 33:33 /var/mail \
&& touch /etc/msmtprc \
&& chown 33:33 /etc/msmtprc \
&& chmod 600 /etc/msmtprc \
&& echo 'sendmail_path = "/usr/bin/msmtp -t"' > $PHP_INI_DIR/conf.d/msmtp.ini
CMD ["php-fpm"]