-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
5 additions
and
8 deletions.
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
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 |
---|---|---|
@@ -1,16 +1,12 @@ | ||
FROM ubuntu:21.10 | ||
FROM debian:bullseye-slim | ||
MAINTAINER Salvador E. Tropea <[email protected]> | ||
LABEL Description="Minimal KiCad 6 image based on Ubuntu 21.10" | ||
|
||
ARG DEBIAN_FRONTEND=noninteractive | ||
ENV TZ=Etc/UTC | ||
RUN apt-get -y update && \ | ||
apt-get -y install --no-install-recommends gnupg && \ | ||
echo "deb http://ppa.launchpad.net/kicad/kicad-6.0-releases/ubuntu impish main" >> /etc/apt/sources.list && \ | ||
echo "deb-src http://ppa.launchpad.net/kicad/kicad-6.0-releases/ubuntu impish main " >> /etc/apt/sources.list && \ | ||
apt-key adv --keyserver keyserver.ubuntu.com --recv-keys FDA854F61C4D0D9572BB95E5245D5502FAD7A805 && \ | ||
RUN echo "deb http://deb.debian.org/debian bullseye-backports main" >> /etc/apt/sources.list && \ | ||
apt-get -y update && \ | ||
apt-get -y install --no-install-recommends kicad kicad-symbols kicad-templates kicad-footprints && \ | ||
apt-get -y install -t bullseye-backports --no-install-recommends kicad kicad-symbols kicad-templates kicad-footprints && \ | ||
apt-get -y autoremove && \ | ||
rm -rf /var/lib/apt/lists/* \ | ||
rm -rf /usr/share/icons/Adwaita/ | ||
|