| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 | FROM debian:stretch-slimLABEL maintainer "Andre Peters <andre.peters@servercow.de>"ARG 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 update && apt-get install -y --no-install-recommends \	ca-certificates \	curl \	dirmngr \	gnupg \	libsasl2-modules \	postfix \	postfix \	postfix-mysql \	postfix-pcre \	python-gpgme \	sasl2-bin \	sudo \	supervisor \	syslog-ng \	syslog-ng-core \	syslog-ng-mod-redis \	&& rm -rf /var/lib/apt/lists/*RUN 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 rm -rf /tmp/* /var/tmp/*
 |