Dockerfile: Remove docker.io

We don't need to install docker inside the container. Add missing
depenencies that docker was pulling in.

Signed-off-by: Rob Bradford <robert.bradford@intel.com>
This commit is contained in:
Rob Bradford 2022-02-23 11:05:47 +00:00 committed by Sebastien Boeuf
parent 00fbd77494
commit a08da07d2a

View File

@ -20,7 +20,6 @@ RUN apt-get update \
&& DEBIAN_FRONTEND=noninteractive apt-get install -yq \
build-essential \
bc \
docker.io \
curl \
wget \
sudo \
@ -49,6 +48,8 @@ RUN apt-get update \
uuid-dev \
iperf3 \
zip \
git-core \
dnsmasq \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*