We can consider providing a predicate that creates an empty layer, say `empty_layer` or `skip`: ``` install_dependencies("debian:bullseye-slim") :- run("apt-get install iproute2"). install_dependencies("debian:bullseye") :- skip. ``` A concrete use case is here: https://github.com/modus-continens/openjdk-images-case-study/blob/fa02585eac8676b69918ad0dc53976be33ab29b4/linux.Modusfile#L59
We can consider providing a predicate that creates an empty layer, say
empty_layerorskip:A concrete use case is here: https://github.com/modus-continens/openjdk-images-case-study/blob/fa02585eac8676b69918ad0dc53976be33ab29b4/linux.Modusfile#L59