blob: 0c74fdcfecc53200cc2f3c74ce7dd1ba66a5c63e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
FROM amd64/debian:buster
ARG VERSION
RUN apt-get update && \
apt-get install -y \
postfix=$VERSION \
postfix-ldap
COPY entrypoint.sh /usr/local/bin/entrypoint
ENTRYPOINT ["/usr/local/bin/entrypoint"]
CMD ["postfix", "start-fg"]
|