FROM debian RUN apt-get -y update && \ apt-get -y install curl dbus && \ curl -L -o mullvad.deb https://mullvad.net/download/app/deb/latest && \ apt-get -y install ./mullvad.deb && \ rm -f mullvad.deb && \ apt-get -y clean && \ rm -rf /var/lib/apt/lists/* RUN apt-get -y update && \ apt-get -y install iputils-ping tcpdump net-tools dnsutils procps iptables git iproute2 && \ apt-get -y clean && \ rm -rf /var/lib/apt/lists/* VOLUME /config ADD my_init / CMD ["/my_init"]