Skip to content
This repository was archived by the owner on Oct 13, 2023. It is now read-only.

Commit b705337

Browse files
committed
deb: use DEBIAN_FRONTEND=noninteractive for all dockerfiles
This was needed for Ubuntu 20.04, but doesn't hurt to use for other versions as well. Signed-off-by: Sebastiaan van Stijn <github@gone.nl> (cherry picked from commit fb44c6e) Signed-off-by: Sebastiaan van Stijn <github@gone.nl> Upstream-commit: 3029f36ad3afca0cfd124ac39470d4baeb2f6614 Component: packaging
1 parent 042b85e commit b705337

8 files changed

Lines changed: 8 additions & 0 deletions

File tree

components/packaging/deb/debian-buster/Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ FROM ${GO_IMAGE} AS golang
77

88
FROM ${BUILD_IMAGE}
99

10+
ARG DEBIAN_FRONTEND=noninteractive
1011
RUN apt-get update && apt-get install -y curl devscripts equivs git
1112

1213
ENV GOPROXY=direct

components/packaging/deb/debian-stretch/Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ FROM ${GO_IMAGE} AS golang
77

88
FROM ${BUILD_IMAGE}
99

10+
ARG DEBIAN_FRONTEND=noninteractive
1011
RUN apt-get update && apt-get install -y curl devscripts equivs git
1112

1213
ENV GOPROXY=direct

components/packaging/deb/raspbian-buster/Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ FROM ${GO_IMAGE} AS golang
77

88
FROM ${BUILD_IMAGE}
99

10+
ARG DEBIAN_FRONTEND=noninteractive
1011
RUN apt-get update && apt-get install -y curl devscripts equivs git
1112

1213
ENV GOPROXY=direct

components/packaging/deb/raspbian-stretch/Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ FROM ${GO_IMAGE} AS golang
77

88
FROM ${BUILD_IMAGE}
99

10+
ARG DEBIAN_FRONTEND=noninteractive
1011
RUN apt-get update && apt-get install -y curl devscripts equivs git
1112

1213
ENV GOPROXY=direct

components/packaging/deb/ubuntu-bionic/Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ FROM ${GO_IMAGE} AS golang
77

88
FROM ${BUILD_IMAGE}
99

10+
ARG DEBIAN_FRONTEND=noninteractive
1011
RUN apt-get update && apt-get install -y curl devscripts equivs git
1112

1213
ENV GOPROXY=direct

components/packaging/deb/ubuntu-disco/Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ RUN if [ "$(dpkg-divert --truename /usr/bin/man)" = "/usr/bin/man.REAL" ]; then
1313
dpkg-divert --quiet --remove --rename /usr/bin/man; \
1414
fi
1515

16+
ARG DEBIAN_FRONTEND=noninteractive
1617
RUN apt-get update && apt-get install -y curl devscripts equivs git
1718

1819
ENV GOPROXY=direct

components/packaging/deb/ubuntu-eoan/Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ RUN if [ "$(dpkg-divert --truename /usr/bin/man)" = "/usr/bin/man.REAL" ]; then
1313
dpkg-divert --quiet --remove --rename /usr/bin/man; \
1414
fi
1515

16+
ARG DEBIAN_FRONTEND=noninteractive
1617
RUN apt-get update && apt-get install -y curl devscripts equivs git
1718

1819
ENV GOPROXY=direct

components/packaging/deb/ubuntu-xenial/Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ FROM ${GO_IMAGE} AS golang
77

88
FROM ${BUILD_IMAGE}
99

10+
ARG DEBIAN_FRONTEND=noninteractive
1011
RUN apt-get update && apt-get install -y curl devscripts equivs git
1112

1213
ENV GOPROXY=direct

0 commit comments

Comments
 (0)