12 lines
286 B
Docker
12 lines
286 B
Docker
FROM alpine:latest
|
|
|
|
RUN apk add go
|
|
|
|
RUN go install github.com/gokrazy/freeze/cmd/...@latest
|
|
RUN apk add iptables nftables iptables
|
|
RUN apk add rsync
|
|
|
|
RUN ~/go/bin/freeze -wrap=ldd $(which iptables)
|
|
RUN ~/go/bin/freeze -wrap=ldd $(which nft)
|
|
RUN ~/go/bin/freeze -wrap=ldd $(which rsync)
|