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