When making Docker builds like this:
FROM debian:buster
RUN apt-get update && apt-get -y --no-install-recommends install \
build-essential \
&& rm -rf /var/lib/apt/lists/*
I get the following warning:
debconf: delaying package configuration, since apt-utils is not installed
It appears to be harmless, but is there an easy way to avoid it?
This does not get rid of the warning:
FROM debian:buster
RUN apt-get update
RUN DEBIAN_FRONTEND=noninteractive apt-get -y --no-install-recommends \
install build-essential
Here's a question about that warning in general: What does "debconf: delaying package configuration, since apt-utils is not installed" mean?