From 6666a5bc6c719766e81f83cb6da009ad92272f72 Mon Sep 17 00:00:00 2001 From: Josh Jacobs Date: Sun, 26 Oct 2025 17:00:22 +0000 Subject: [PATCH] chore: set non-interactive mode for Docker builds - Added ENV DEBIAN_FRONTEND=noninteractive to the Dockerfile to streamline the build process. --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index f9ccf3c..299c290 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,6 @@ FROM debian:13.1 AS stage SHELL ["/bin/bash", "-o", "pipefail", "-c"] +ENV DEBIAN_FRONTEND=noninteractive ARG PACKAGE_BASEURL=https://download.zerotier.com/debian/trixie/pool/main/z/zerotier-one ARG TARGETARCH ARG VERSION=1.16.0-2 @@ -20,6 +21,7 @@ RUN set -e; \ FROM debian:13.1 SHELL ["/bin/bash", "-o", "pipefail", "-c"] +ENV DEBIAN_FRONTEND=noninteractive ARG VERSION RUN mkdir /app WORKDIR /app