mirror of
https://github.com/jschauma/spf.git
synced 2024-05-09 09:54:51 +00:00
ffffdb144b
Verbatim from https://github.com/jschauma/spf/issues/2
9 lines
275 B
Docker
9 lines
275 B
Docker
# From @Techbrunch via https://github.com/jschauma/spf/issues/2
|
|
FROM debian
|
|
|
|
RUN apt update
|
|
RUN apt install -y libjson-perl libnet-dns-perl libnet-netmask-perl build-essential git
|
|
RUN git clone https://github.com/jschauma/spf/ && cd spf && make install
|
|
|
|
ENTRYPOINT [ "spf" ]
|