Skip to content

Commit

Permalink
Added the KiCad 6 docker file with _k6 in the name
Browse files Browse the repository at this point in the history
  • Loading branch information
set-soft committed Mar 25, 2022
1 parent 5c34e8b commit 17ad888
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions Dockerfile_k6
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" ]

0 comments on commit 17ad888

Please sign in to comment.