# Base image for the bare image for testing config packages (see Dockerfile). # Note that building this image requires an internet connection. FROM debian:buster RUN echo 'deb http://httpredir.debian.org/debian buster main' > /etc/apt/sources.list RUN echo 'Acquire::ForceIPv4 "true";' > /etc/apt/apt.conf.d/99force-ipv4 RUN apt-get update RUN apt-get install curl -y CMD ["bash"]