rspamd/Dockerfile

15 lines
373 B
Docker
Raw Normal View History

2017-07-23 09:36:36 +00:00
# NAME leenooks/rspamd
# VERSION latest
FROM registry.leenooks.net/leenooks/base:7.E
2017-12-12 23:06:05 +00:00
RUN curl -o /etc/yum.repos.d/rspamd.repo http://rspamd.com/rpm-stable/centos-7/rspamd.repo && rpm --import http://rspamd.com/rpm-stable/gpg.key && yum -y install rspamd && yum clean all
2017-07-23 09:36:36 +00:00
EXPOSE 11332 11333 11334
COPY init /sbin/
# Starting
ENTRYPOINT [ "/sbin/init" ]
CMD [ "start" ]