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.
13 lines
238 B
13 lines
238 B
FROM alpine:3.16
|
|
|
|
RUN apk add --no-cache rspamd rspamd-controller rspamd-proxy rspamd-fuzzy ca-certificates curl
|
|
|
|
RUN mkdir /run/rspamd
|
|
|
|
COPY start.sh /
|
|
|
|
EXPOSE 11332/tcp 11334/tcp 11335/tcp
|
|
|
|
VOLUME ["/var/lib/rspamd"]
|
|
|
|
CMD ["/start.sh"]
|
|
|