13 lines
No EOL
339 B
Django/Jinja
13 lines
No EOL
339 B
Django/Jinja
FROM drupal:8.8.5-apache
|
|
|
|
RUN apt-get update; \
|
|
apt-get install -y --no-install-recommends msmtp; \
|
|
rm -rf /var/lib/apt/lists/*
|
|
|
|
RUN echo "sendmail_path = /usr/bin/msmtp -t " > /usr/local/etc/php/conf.d/sendmail.ini
|
|
|
|
RUN echo "\
|
|
account default\n\
|
|
host {{ site.subnet_gateway_ip }}\n\
|
|
port 25\n\
|
|
from php@{{ site.url }}\n" > /etc/msmtprc |