For some reason, the MAC address reported by dnsmasq in Docker on GitHub Actions no longer matches the address expected by the test. With Nix, it works.
12 lines
128 B
Nix
12 lines
128 B
Nix
{
|
|
pkgs ? import <nixpkgs> { },
|
|
}:
|
|
pkgs.mkShell {
|
|
packages = with pkgs; [
|
|
dnsmasq
|
|
dig
|
|
ndisc6
|
|
nftables
|
|
];
|
|
}
|