问题 I am trying to install apt-utils on Docker because when I was just doing apt-get update , I was getting the error: debconf: delaying package configuration, since apt-utils is not installed . So I added a line to install apt-utils (along with curl ): RUN apt-get update && apt-get install -y apt-utils && apt-get install -y curl But, I am still getting that error leading me to believe that my command didn't work. Below is my output when I try to build the image. Step 5/12 : RUN apt-get update &&