Move into stretch subdirectory

This commit is contained in:
Jamie Nguyen
2018-07-11 12:10:08 +01:00
parent 80532ca493
commit 9b913fa10c
2 changed files with 0 additions and 0 deletions

18
stretch/Dockerfile Normal file
View File

@@ -0,0 +1,18 @@
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 the main script.
COPY docker-entrypoint.sh /usr/local/bin/docker-entrypoint.sh
# We expose exim on port 25.
EXPOSE 25/tcp
ENTRYPOINT [ "docker-entrypoint.sh" ]
CMD [ "exim", "-bdf", "-v", "-q30m" ]