You are working on the following Dockerfile:
FROM ubuntu:22.04
LABEL author=HyperUser
RUN apt-get update -y \
&& apt-get install iputils-ping -y \
&& apt-get install net-tools -y \
ENTRYPOINT ["/bin/bash"]What line should you add to finish the RUN instruction to clean apt lists?