Files
drupal7-docker/Dockerfile
T
torben fbd6e8b0f5 Switched to msmtp
ssmtp is not available in debian buster, so we can't send mails that way
anymore. Switched to msmtp, which serves the same purpose.
2020-06-11 17:44:19 +02:00

17 lines
364 B
Docker

FROM drupal:7
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 /