-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix noninteractive frontend for all apt
- Loading branch information
Showing
1 changed file
with
3 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,14 +2,16 @@ FROM ubuntu:latest | |
MAINTAINER John Whittington <[email protected]> | ||
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 && \ | ||
apt autoclean -y && \ | ||
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 && \ | ||
|