2019-02-18 13:48:21 +00:00
|
|
|
FROM thallian/confd-env:latest
|
|
|
|
|
|
|
|
RUN apk add --no-cache \
|
|
|
|
postfix \
|
2021-08-23 13:20:57 +00:00
|
|
|
postfix-pgsql \
|
2019-02-18 13:48:21 +00:00
|
|
|
openssl \
|
|
|
|
libstdc++ \
|
2021-08-24 08:41:54 +00:00
|
|
|
libmilter
|
2019-02-18 13:48:21 +00:00
|
|
|
|
|
|
|
RUN addgroup -g 2222 access
|
|
|
|
RUN addgroup postfix access
|
2016-07-06 09:42:10 +00:00
|
|
|
|
2016-07-06 12:14:32 +00:00
|
|
|
RUN chown root /var/spool/postfix/
|
|
|
|
RUN chown root /var/spool/postfix/pid
|
|
|
|
|
2016-07-06 09:42:10 +00:00
|
|
|
EXPOSE 25 587
|
|
|
|
|
|
|
|
ADD /rootfs /
|
2021-08-24 08:15:36 +00:00
|
|
|
|