2022-02-02 17:03:32 +00:00
|
|
|
FROM drupal:9.3
|
2018-11-08 21:17:04 +00:00
|
|
|
LABEL maintainer="Torben Nehmer <torben@nehmer.net>"
|
|
|
|
|
|
|
|
RUN set -ex; \
|
|
|
|
apt-get update; \
|
|
|
|
\
|
|
|
|
apt-get install -y --no-install-recommends \
|
2020-06-11 15:34:00 +00:00
|
|
|
msmtp \
|
2018-11-08 21:17:04 +00:00
|
|
|
; \
|
|
|
|
\
|
|
|
|
rm -rf /var/lib/apt/lists/* ;\
|
2018-11-11 19:34:41 +00:00
|
|
|
apt-get clean
|
2018-11-08 21:17:04 +00:00
|
|
|
|
|
|
|
# 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 /
|