Files
docker-smtp/stretch/Dockerfile
2018-07-15 10:12:47 +01:00

15 lines
383 B
Docker

FROM debian:stretch-slim
MAINTAINER Bytemark Hosting "support@bytemark.co.uk"
# Install exim4
ENV DEBIAN_FRONTEND noninteractive
RUN set -ex; \
apt-get update; \
apt-get install -y exim4-daemon-light; \
apt-get clean
COPY docker-entrypoint.sh /usr/local/bin/docker-entrypoint.sh
EXPOSE 25/tcp
ENTRYPOINT [ "docker-entrypoint.sh" ]
CMD [ "exim", "-bdf", "-v", "-q30m" ]