Skip to content

Commit ba30637

Browse files
committed
deb: DEBIAN_FRONTEND=noninteractive is ENV not ARG
It needs to be an ENV to be passed though to apt-get commands.
1 parent 64d5aa7 commit ba30637

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

ci_build_images/debian-release.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ FROM "$BASE_IMAGE"
88
LABEL maintainer="MariaDB Buildbot maintainers"
99

1010
# This will make apt-get install without question
11-
ARG DEBIAN_FRONTEND=noninteractive
11+
ENV DEBIAN_FRONTEND=noninteractive
1212

1313
# Install updates and required packages
1414
RUN . /etc/os-release; \

ci_build_images/debian.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ LABEL maintainer="MariaDB Buildbot maintainers"
1010
ENV CARGO_NET_GIT_FETCH_WITH_CLI=true
1111

1212
# This will make apt-get install without question
13-
ARG DEBIAN_FRONTEND=noninteractive
13+
ENV DEBIAN_FRONTEND=noninteractive
1414

1515
# Enable apt sources
1616
RUN . /etc/os-release \

0 commit comments

Comments
 (0)