16 lines
245 B
Docker
16 lines
245 B
Docker
FROM debian:latest
|
|
|
|
LABEL Maintainer="Wolfgang Hottgenroth <woho@hottis.de>"
|
|
LABEL ImageName="registry.gitlab.com/wolutator/exim-docker"
|
|
|
|
RUN \
|
|
apt update && \
|
|
apt install -y exim4 && \
|
|
rm -rf /var/lib/apt/lists/*
|
|
|
|
VOLUME /etc/exim4
|
|
|
|
|
|
|
|
|