Skip to content

Commit

Permalink
deb: DEBIAN_FRONTEND=noninteractive is ENV not ARG
Browse files Browse the repository at this point in the history
It needs to be an ENV to be passed though to apt-get
commands.
  • Loading branch information
grooverdan committed Sep 25, 2024
1 parent 64d5aa7 commit ba30637
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ci_build_images/debian-release.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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; \
Expand Down
2 changes: 1 addition & 1 deletion ci_build_images/debian.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand Down

0 comments on commit ba30637

Please sign in to comment.