fix: Use non interactive ui for apt In some configurations `apt --yes install octave` drops to interactively configuring the keyboard (which does not work in a podman build).
4 files changed, 9 insertions(+), 1 deletions(-) M local/Dockerfile.debian.emacs26 M local/Dockerfile.debian.emacs27 M local/Dockerfile.debian.emacs28 M local/Dockerfile.ubuntu
M local/Dockerfile.debian.emacs26 => local/Dockerfile.debian.emacs26 +2 -0
@@ 1,5 1,7 @@ FROM docker.io/library/debian:oldstable ENV DEBIAN_FRONTEND=noninteractive RUN apt --yes update RUN DEBIAN_FRONTEND=noninteractive TZ=Etc/UTC apt --yes install tzdata RUN apt --yes install \
M local/Dockerfile.debian.emacs27 => local/Dockerfile.debian.emacs27 +2 -0
@@ 1,5 1,7 @@ FROM docker.io/library/debian:stable ENV DEBIAN_FRONTEND=noninteractive RUN apt --yes update RUN DEBIAN_FRONTEND=noninteractive TZ=Etc/UTC apt --yes install tzdata RUN apt --yes install \
M local/Dockerfile.debian.emacs28 => local/Dockerfile.debian.emacs28 +2 -0
@@ 1,5 1,7 @@ FROM docker.io/library/debian:unstable ENV DEBIAN_FRONTEND=noninteractive RUN apt --yes update RUN DEBIAN_FRONTEND=noninteractive TZ=Etc/UTC apt --yes install tzdata RUN apt --yes install \
M local/Dockerfile.ubuntu => local/Dockerfile.ubuntu +3 -1