mirror of
https://github.com/linuxkit/linuxkit.git
synced 2026-01-16 13:49:28 +00:00
In #1057 removed the 9p paths from the database mount but that broke some users accessing them directly. Fix these. Signed-off-by: Justin Cormack <justin.cormack@docker.com>
14 lines
381 B
Makefile
14 lines
381 B
Makefile
# This image is currently just tagged latest as non reproducible
|
|
IPTABLES_IMAGE=mobylinux/pinata-iptables@sha256:c94aa6902e858712058d0550320564ecb03d1f8f6370f91cdbc3f18b87662411
|
|
|
|
all: usr/local/sbin/iptables
|
|
|
|
usr/local/sbin/iptables:
|
|
mkdir -p $(dir $@)
|
|
docker run --rm --net=none --log-driver=none $(IPTABLES_IMAGE) | tar xf - -C $(dir $@)
|
|
|
|
clean:
|
|
rm -rf usr
|
|
|
|
.DELETE_ON_ERROR:
|