You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Dockerfile 473B

1234567891011121314151617181920
  1. FROM debian:jessie
  2. MAINTAINER Robin Thoni <robin@rthoni.com>
  3. RUN apt-get update &&\
  4. apt-get install -y opendkim opendkim-tools openssl libopendbx1-pgsql rsyslog &&\
  5. apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
  6. RUN rm /etc/opendkim.conf &&\
  7. ln -s /etc/opendkim/opendkim.conf /etc/opendkim.conf
  8. COPY ./run.sh /run.sh
  9. COPY ./config /etc/opendkim/
  10. RUN chown -R opendkim:opendkim /etc/opendkim
  11. VOLUME ["/etc/opendkim/keys"]
  12. CMD ["/run.sh"]