From ba30637eef25be012da4296d7bd9b2be418d3c49 Mon Sep 17 00:00:00 2001 From: Daniel Black Date: Wed, 25 Sep 2024 09:07:41 +1000 Subject: [PATCH] deb: DEBIAN_FRONTEND=noninteractive is ENV not ARG It needs to be an ENV to be passed though to apt-get commands. --- ci_build_images/debian-release.Dockerfile | 2 +- ci_build_images/debian.Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ci_build_images/debian-release.Dockerfile b/ci_build_images/debian-release.Dockerfile index ceecbe68..c1c2472c 100644 --- a/ci_build_images/debian-release.Dockerfile +++ b/ci_build_images/debian-release.Dockerfile @@ -8,7 +8,7 @@ FROM "$BASE_IMAGE" LABEL maintainer="MariaDB Buildbot maintainers" # This will make apt-get install without question -ARG DEBIAN_FRONTEND=noninteractive +ENV DEBIAN_FRONTEND=noninteractive # Install updates and required packages RUN . /etc/os-release; \ diff --git a/ci_build_images/debian.Dockerfile b/ci_build_images/debian.Dockerfile index c4d9448d..cc738337 100644 --- a/ci_build_images/debian.Dockerfile +++ b/ci_build_images/debian.Dockerfile @@ -10,7 +10,7 @@ LABEL maintainer="MariaDB Buildbot maintainers" ENV CARGO_NET_GIT_FETCH_WITH_CLI=true # This will make apt-get install without question -ARG DEBIAN_FRONTEND=noninteractive +ENV DEBIAN_FRONTEND=noninteractive # Enable apt sources RUN . /etc/os-release \