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

Commit e8a5b96

Browse files
authored
Merge pull request #469 from thaJeztah/19.03_backport_deb_noninteractive
[19.03 backport] deb: use DEBIAN_FRONTEND=noninteractive for all dockerfiles Upstream-commit: a42945f48ce09849beb3f7525312979511cc72e6 Component: packaging
2 parents 042b85e + b705337 commit e8a5b96

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)