mirror of
https://github.com/jschauma/spf.git
synced 2024-05-09 09:54:51 +00:00
4a68820aaf
Add missing socket6 library
9 lines
305 B
Docker
9 lines
305 B
Docker
# From @Techbrunch via https://github.com/jschauma/spf/issues/2
|
|
FROM debian:bookworm-slim
|
|
|
|
RUN apt update
|
|
RUN apt install -y libjson-perl libnet-dns-perl libnet-netmask-perl libsocket6-perl build-essential git
|
|
RUN git clone https://github.com/jschauma/spf/ && cd spf && make install
|
|
|
|
ENTRYPOINT [ "spf" ]
|