Cleanup a little more

master
父節點 8dd5f9e7ff
當前提交 42954bfd25
  1. 29
      Dockerfile

@ -4,7 +4,10 @@ ENV HOSTNAME=${HOSTNAME:-haraka.localdomain}
ENV EMAIL=${EMAIL:-test@email.tld}
ENV USE_LETSENCRYPT=${USE_LETSENCRYPT:-false}
RUN echo "deb http://ftp.debian.org/debian jessie-backports main" >> /etc/apt/sources.list && \
COPY haraka.sh /haraka.sh
RUN chmod +x /haraka.sh /etc/cron.daily/certbot-renew.sh && \
echo "deb http://ftp.debian.org/debian jessie-backports main" >> /etc/apt/sources.list && \
apt-get update && apt-get upgrade -y && apt-get -t jessie-backports install -y --no-install-recommends supervisor certbot cron git && \
mkdir /var/log/supervisord && \
mkdir /var/run/supervisord && \
@ -18,13 +21,18 @@ RUN echo "deb http://ftp.debian.org/debian jessie-backports main" >> /etc/apt/so
haraka \
&& chown -R haraka:haraka /haraka
COPY haraka.sh /haraka.sh
COPY supervisord.conf /etc/supervisor/supervisord.conf
COPY certbot-renew.sh /etc/cron.daily/certbot-renew.sh
RUN chmod +x /haraka.sh /etc/cron.daily/certbot-renew.sh
# Port 80 is used for LetsEncrypt
EXPOSE 25 80 587
VOLUME /haraka
VOLUME /etc/letsencrypt
ENTRYPOINT ["/usr/bin/supervisord", "-c", "/etc/supervisor/supervisord.conf"]
# Install and Haraka and it's plugins
# Install Haraka and it's plugins
USER node
ENV NPM_CONFIG_PREFIX=/home/node/.npm-global
ENV PATH=$PATH:/home/node/.npm-global/bin
@ -35,16 +43,3 @@ RUN npm -g install \
haraka-plugin-rspamd \
haraka-plugin-rcpt-ldap \
https://github.com/haraka/haraka-plugin-auth-ldap.git
USER root
RUN apt-get -y autoremove git && \
rm -rf /var/lib/apt/lists/*
# Port 80 is used for LetsEncrypt
EXPOSE 25 80 587
VOLUME /haraka
VOLUME /etc/letsencrypt
ENTRYPOINT ["/usr/bin/supervisord", "-c", "/etc/supervisor/supervisord.conf"]

載入中…
取消
儲存