aboutsummaryrefslogtreecommitdiff
path: root/packages/Dockerfile.base
blob: a188b76a7ecc89024cbc0d7be30df181cf8391ce (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
# 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"]