Are you trying to set DEBIAN_FRONTEND=noninteractive in docker so that no question/dialog is asked during apt-get install?
See why it is discouraged.
Debian_frontend noninteractive mode is useful when you need zero interaction while installing or upgrading the system via apt. It accepts the default answer for all questions.
It might mail an error message to the root user, but that's it all.
Otherwise, it is totally silent and humble, a perfect frontend for automatic installs.
Because it is inherited by all images and containers built from the image, effectively changing their behavior.
Setting DEBIAN_FRONTEND to noninteractive is mainly a 'cosmetic' change, we highly discourage changing it.
Here at Ibmi Media, as part of our Server Management Services, we regularly help our Customers to perform Docker related queries.
In this context, we shall look into why we discourage changing the default value of DEBIAN_FRONTEND.
Why DEBIAN_FRONTEND=noninteractive mode is discouraged in Docker files?
Here, you will see why you should not set DEBIAN_FRONTEND to noninteractive.
Generally, while building Docker images on Debian and Ubuntu you may have seen errors like:
unable to initialize frontend: Dialog
However, these errors don't stop the building of the image instead it informs you that the installation process tried to open a dialog box, but couldn't.
Generally, we can safely ignore these errors.
In some cases, few people try to change this environment variable inside the Dockerfile using:
ENV DEBIAN_FRONTEND=noninteractive
This prevents the installer from opening dialog boxes during the installation process.
As a result, it stops the errors from displaying.
This might sound like a good idea but it may have side effects.
Common error setting DEBIAN_FRONTEND=noninteractive in docker
Let us fix an error our customer encountered.
One of our customers set the following environment so that no question/dialog pops up during apt-get install:
ENV DEBIAN_FRONTEND noninteractive # export DEBIAN_FRONTEND="noninteractive"
Then while building an image from a Dockerfile, at the end of one specific Debian/Ubuntu package install (using apt-get install), package configuration debconf says:
debconf: unable to initialize frontend: Noninteractive # export DEBIAN_FRONTEND="noninteractive"
debconf: (Bareword "Debconf::FrontEnd::Noninteractive" not allowed while "strict subs" in use at (eval 35) line 3, <> line 1.)
debconf: falling back to frontend: Noninteractive
Subroutine BEGIN redefined at (eval 36) line 2, <> line 1.
First of all, we highly discourage setting DEBIAN_FRONTEND to noninteractive via ENV.
Because the environment variable persists after the build, e.g. when you run docker exec -it … bash.
The setting would not make sense here.
Here are the two possible ways:
Setting it via ARG as this is only available during build:
ARG DEBIAN_FRONTEND=noninteractive
RUN apt-get -qq install {your-package}
When required, setting it on-the-fly:
RUN apt-get update && \
DEBIAN_FRONTEND=noninteractive apt-get -qq install {your-package}