commit | 52f5d5d413d5681398e6b276a1c64100d5bf177b | [log] [tgz] |
---|---|---|
author | Giovanni Tirloni <gtirloni@tight-ship.net> | Tue Feb 20 13:35:29 2024 -0300 |
committer | GitHub <noreply@github.com> | Tue Feb 20 11:35:29 2024 -0500 |
tree | 9879a11a5925d0b55554bd06b53291df8404eb2c | |
parent | 5c44b2d0f6128f8008bad2ba1a93951fbf5ba8ae [diff] |
fix(images): use noninteractive apt-get frontend (#975)
diff --git a/images/Earthfile b/images/Earthfile index 0a4374a..32cab4a 100644 --- a/images/Earthfile +++ b/images/Earthfile
@@ -5,7 +5,7 @@ ARG PACKAGES RUN \ apt-get update && \ - apt-get install --no-install-recommends -y ${PACKAGES} && \ + DEBIAN_FRONTEND=noninteractive apt-get install --no-install-recommends -y ${PACKAGES} && \ apt-get clean && \ rm -rf /var/lib/apt/lists/*