~bzg/org-mode-tests

e51db46b6204a2e742886b88ecde24ad99a80f2b — Christian Köstlin 6 months ago 871e25f master
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).
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
@@ 1,8 1,10 @@
FROM docker.io/library/ubuntu:20.04
ARG emacs=emacs28

ENV DEBIAN_FRONTEND=noninteractive

RUN apt --yes update
RUN DEBIAN_FRONTEND=noninteractive TZ=Etc/UTC apt --yes install tzdata
RUN TZ=Etc/UTC apt --yes install tzdata
RUN apt --yes install \
    make \
    git \