From 76dc3d1ac125ee73290c519dab4c7aff69c7814a Mon Sep 17 00:00:00 2001 From: John Whittington Date: Mon, 26 Feb 2024 09:34:31 +0100 Subject: [PATCH] fix noninteractive frontend for all apt --- Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 2820f12..5d86ff0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,6 +2,8 @@ FROM ubuntu:latest MAINTAINER John Whittington LABEL Description="KiCad 8.0 with KiCad Makefile and plugins used" +ARG DEBIAN_FRONTEND=noninteractive + RUN apt update && \ apt upgrade -y && \ apt install -y wget make zip git python3 python3-pip poppler-utils && \ @@ -9,7 +11,7 @@ RUN apt update && \ apt autoremove -y && \ apt clean -RUN DEBIAN_FRONTEND=noninteractive apt install software-properties-common -y +RUN apt install software-properties-common -y # Adding the repository for KiCad 8.0 stable release RUN add-apt-repository --yes ppa:kicad/kicad-8.0-releases && \