| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 | FROM debian:stretch-slimMAINTAINER Andre Peters <andre.peters@servercow.de>ENV DEBIAN_FRONTEND noninteractiveENV LC_ALL CRUN dpkg-divert --local --rename --add /sbin/initctl \	&& ln -sf /bin/true /sbin/initctl \	&& dpkg-divert --local --rename --add /usr/bin/ischroot \	&& ln -sf /bin/true /usr/bin/ischrootRUN apt-get updateRUN apt-get install -y --no-install-recommends supervisor \	postfix \	sasl2-bin \	libsasl2-modules \	postfix \	postfix-mysql \	postfix-pcre \	syslog-ng \	syslog-ng-core \    syslog-ng-mod-redis \	ca-certificates \	gnupg \	python-gpgme \	sudo \	curl \	dirmngrRUN addgroup --system --gid 600 zeypleRUN adduser --system --home /var/lib/zeyple --no-create-home --uid 600 --gid 600 --disabled-login zeypleRUN touch /var/log/zeyple.log && chown zeyple: /var/log/zeyple.logRUN touch /etc/default/localeCOPY zeyple.py /usr/local/bin/zeyple.pyCOPY zeyple.conf /etc/zeyple.confCOPY supervisord.conf /etc/supervisor/supervisord.confCOPY syslog-ng.conf /etc/syslog-ng/syslog-ng.confCOPY postfix.sh /opt/postfix.shCOPY whitelist_forwardinghosts.sh /usr/local/bin/whitelist_forwardinghosts.shEXPOSE 588CMD exec /usr/bin/supervisord -c /etc/supervisor/supervisord.confRUN apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
 |