Skip to content

Commit 87bd787

Browse files
committed
ci: Enforce non-interactive frontend in Debian/Ubuntu based containers
1 parent c2684bf commit 87bd787

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

docker/ubuntu-18.04-lts/Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@ FROM ubuntu:18.04
22
LABEL maintainer="Illya Kysil <ikysil@ikysil.name>"
33

44
ENV LANG=C.UTF-8 \
5-
LC_ALL=C.UTF-8
5+
LC_ALL=C.UTF-8 \
6+
DEBIAN_FRONTEND=noninteractive
67

78
RUN yes | ( dpkg --add-architecture i386 && \
89
apt-get update && \

docker/ubuntu-20.04-lts/Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@ FROM ubuntu:20.04
22
LABEL maintainer="Illya Kysil <ikysil@ikysil.name>"
33

44
ENV LANG=C.UTF-8 \
5-
LC_ALL=C.UTF-8
5+
LC_ALL=C.UTF-8 \
6+
DEBIAN_FRONTEND=noninteractive
67

78
RUN yes | ( dpkg --add-architecture i386 && \
89
apt-get update && \

docker/ubuntu-20.10/Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@ FROM ubuntu:20.10
22
LABEL maintainer="Illya Kysil <ikysil@ikysil.name>"
33

44
ENV LANG=C.UTF-8 \
5-
LC_ALL=C.UTF-8
5+
LC_ALL=C.UTF-8 \
6+
DEBIAN_FRONTEND=noninteractive
67

78
RUN yes | ( dpkg --add-architecture i386 && \
89
apt-get update && \

0 commit comments

Comments
 (0)