forked from INTI-CMNB/KiBot
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added the KiCad 6 docker file with _k6 in the name
- Loading branch information
Showing
1 changed file
with
20 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
FROM setsoft/kicad_auto:dev_k6 | ||
LABEL AUTHOR Salvador E. Tropea <set@ieee.org> | ||
LABEL Description="export various files from KiCad projects" | ||
|
||
RUN apt-get update && \ | ||
apt-get -y install -t bullseye-backports curl && \ | ||
apt-get -y install make wget && \ | ||
curl -s https://api.github.com/repos/INTI-CMNB/kicad-git-filters/releases/latest | grep "browser_download_url.*deb" | cut -d : -f 2,3 | tr -d \" | wget -i - && \ | ||
apt -y install --no-install-recommends ./*.deb && \ | ||
apt-get -y remove curl wget && \ | ||
apt-get -y autoremove && \ | ||
rm /*.deb && \ | ||
rm -rf /var/lib/apt/lists/* | ||
|
||
COPY entrypoint.sh /entrypoint.sh | ||
RUN chmod +x /entrypoint.sh | ||
|
||
WORKDIR /mnt | ||
|
||
ENTRYPOINT [ "/entrypoint.sh" ] |