drupal8-docker/Dockerfile
Torben Nehmer acae4bc5a4 Switched to msmtp
ssmtp is not available in buster, so we wouldn't be able to send mails.
Switched to msmtp, which serves the same purpose.
2020-06-11 17:43:43 +02:00

17 lines
364 B
Docker

FROM drupal:8
LABEL maintainer="Torben Nehmer <torben@nehmer.net>"
RUN set -ex; \
apt-get update; \
\
apt-get install -y --no-install-recommends \
msmtp \
; \
\
rm -rf /var/lib/apt/lists/* ;\
apt-get clean
# Finally, publish the rootfs file into the container
# This is done as last step to make docker build caching more efficient.
ADD rootfs.tar.gz /