Skip to content

Commit

Permalink
fix noninteractive frontend for all apt
Browse files Browse the repository at this point in the history
  • Loading branch information
tuna-f1sh committed Feb 26, 2024
1 parent 909c9ac commit 76dc3d1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 && \
Expand Down

0 comments on commit 76dc3d1

Please sign in to comment.