chore: set non-interactive mode for Docker builds

- Added ENV DEBIAN_FRONTEND=noninteractive to the Dockerfile to streamline the build process.
This commit is contained in:
Josh Jacobs
2025-10-26 17:00:22 +00:00
parent d7b7ff961c
commit 6666a5bc6c

View File

@@ -1,5 +1,6 @@
FROM debian:13.1 AS stage FROM debian:13.1 AS stage
SHELL ["/bin/bash", "-o", "pipefail", "-c"] 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 PACKAGE_BASEURL=https://download.zerotier.com/debian/trixie/pool/main/z/zerotier-one
ARG TARGETARCH ARG TARGETARCH
ARG VERSION=1.16.0-2 ARG VERSION=1.16.0-2
@@ -20,6 +21,7 @@ RUN set -e; \
FROM debian:13.1 FROM debian:13.1
SHELL ["/bin/bash", "-o", "pipefail", "-c"] SHELL ["/bin/bash", "-o", "pipefail", "-c"]
ENV DEBIAN_FRONTEND=noninteractive
ARG VERSION ARG VERSION
RUN mkdir /app RUN mkdir /app
WORKDIR /app WORKDIR /app