2019-11-24 16:20:19 +08:00
|
|
|
FROM debian:buster-slim
|
2017-05-13 21:33:32 +08:00
|
|
|
LABEL maintainer "Andre Peters <andre.peters@servercow.de>"
|
2017-03-02 18:23:23 +08:00
|
|
|
|
2017-05-13 22:29:18 +08:00
|
|
|
ARG DEBIAN_FRONTEND=noninteractive
|
2020-08-16 17:58:57 +08:00
|
|
|
ARG SOGO_DEBIAN_REPOSITORY=http://packages.inverse.ca/SOGo/nightly/5/debian/
|
2017-03-02 18:23:23 +08:00
|
|
|
ENV LC_ALL C
|
2021-04-17 02:38:09 +08:00
|
|
|
ENV GOSU_VERSION 1.12
|
2017-03-02 18:23:23 +08:00
|
|
|
|
2017-06-12 16:42:33 +08:00
|
|
|
# Prerequisites
|
2019-12-08 00:27:59 +08:00
|
|
|
RUN echo "Building from repository $SOGO_DEBIAN_REPOSITORY" \
|
|
|
|
&& apt-get update && apt-get install -y --no-install-recommends \
|
2018-11-26 16:10:39 +08:00
|
|
|
apt-transport-https \
|
|
|
|
ca-certificates \
|
|
|
|
gettext \
|
2018-12-22 02:54:32 +08:00
|
|
|
gnupg \
|
2019-11-24 18:02:06 +08:00
|
|
|
mariadb-client \
|
2019-03-29 14:46:28 +08:00
|
|
|
rsync \
|
2018-11-26 16:10:39 +08:00
|
|
|
supervisor \
|
|
|
|
syslog-ng \
|
|
|
|
syslog-ng-core \
|
|
|
|
syslog-ng-mod-redis \
|
|
|
|
dirmngr \
|
|
|
|
netcat \
|
|
|
|
psmisc \
|
|
|
|
wget \
|
|
|
|
patch \
|
|
|
|
&& dpkgArch="$(dpkg --print-architecture | awk -F- '{ print $NF }')" \
|
|
|
|
&& wget -O /usr/local/bin/gosu "https://github.com/tianon/gosu/releases/download/$GOSU_VERSION/gosu-$dpkgArch" \
|
|
|
|
&& chmod +x /usr/local/bin/gosu \
|
2019-07-09 14:59:28 +08:00
|
|
|
&& gosu nobody true \
|
|
|
|
&& mkdir /usr/share/doc/sogo \
|
2018-12-22 02:54:32 +08:00
|
|
|
&& touch /usr/share/doc/sogo/empty.sh \
|
|
|
|
&& apt-key adv --keyserver keyserver.ubuntu.com --recv-key 0x810273C4 \
|
2019-12-08 00:27:59 +08:00
|
|
|
&& echo "deb ${SOGO_DEBIAN_REPOSITORY} buster buster" > /etc/apt/sources.list.d/sogo.list \
|
2019-07-09 14:59:28 +08:00
|
|
|
&& apt-get update && apt-get install -y --no-install-recommends \
|
2018-12-22 02:54:32 +08:00
|
|
|
sogo \
|
|
|
|
sogo-activesync \
|
2019-07-09 14:59:28 +08:00
|
|
|
&& apt-get autoclean \
|
2019-12-08 00:27:59 +08:00
|
|
|
&& rm -rf /var/lib/apt/lists/* /etc/apt/sources.list.d/sogo.list \
|
2018-12-22 02:54:32 +08:00
|
|
|
&& touch /etc/default/locale
|
2017-05-14 04:58:10 +08:00
|
|
|
|
2018-10-26 04:35:07 +08:00
|
|
|
COPY ./bootstrap-sogo.sh /bootstrap-sogo.sh
|
2017-05-14 04:58:10 +08:00
|
|
|
COPY syslog-ng.conf /etc/syslog-ng/syslog-ng.conf
|
2020-02-05 17:59:32 +08:00
|
|
|
COPY syslog-ng-redis_slave.conf /etc/syslog-ng/syslog-ng-redis_slave.conf
|
2017-03-02 18:23:23 +08:00
|
|
|
COPY supervisord.conf /etc/supervisor/supervisord.conf
|
2018-08-18 03:42:31 +08:00
|
|
|
COPY acl.diff /acl.diff
|
2018-10-26 04:35:07 +08:00
|
|
|
COPY stop-supervisor.sh /usr/local/sbin/stop-supervisor.sh
|
2020-02-05 17:59:32 +08:00
|
|
|
COPY docker-entrypoint.sh /
|
2018-10-26 04:35:07 +08:00
|
|
|
|
|
|
|
RUN chmod +x /bootstrap-sogo.sh \
|
|
|
|
/usr/local/sbin/stop-supervisor.sh
|
|
|
|
|
2020-02-05 17:59:32 +08:00
|
|
|
ENTRYPOINT ["/docker-entrypoint.sh"]
|
|
|
|
|
2017-03-02 18:23:23 +08:00
|
|
|
CMD exec /usr/bin/supervisord -c /etc/supervisor/supervisord.conf
|