automation/deployer/roles/build/templates/drupal/Dockerfile.j2

14 lines
348 B
Docker
Raw Normal View History

2020-08-21 09:18:17 +00:00
FROM drupal:{{ drupal.version }}
2020-04-28 09:59:52 +00:00
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\
2020-04-28 09:59:52 +00:00
port 25\n\
from php@{{ site.url }}\n" > /etc/msmtprc