20 lines
823 B
Docker
20 lines
823 B
Docker
FROM ghcr.io/inti-cmnb/kicad5_auto:latest_deps
|
|
MAINTAINER Salvador E. Tropea <set@ieee.org>
|
|
LABEL Description="KiCad 5 w/KiBot and other automation scripts"
|
|
LABEL org.opencontainers.image.description "KiCad 5 w/KiBot and other automation scripts"
|
|
|
|
# Install all the tools, dependencies are already installed
|
|
RUN apt-get update && \
|
|
dl_deb.py INTI-CMNB/KiBoM && \
|
|
dl_deb.py INTI-CMNB/kicad-git-filters && \
|
|
dl_deb.py set-soft/kicost-digikey-api-v3 && \
|
|
dl_deb.py hildogjr/KiCost && \
|
|
dl_deb.py INTI-CMNB/InteractiveHtmlBom && \
|
|
dl_deb.py INTI-CMNB/KiAuto && \
|
|
dl_deb.py INTI-CMNB/kidiff && \
|
|
dl_deb.py INTI-CMNB/KiBot && \
|
|
apt -y install --no-install-recommends ./*.deb && \
|
|
apt-get -y autoremove && \
|
|
rm /*.deb && \
|
|
rm -rf /var/lib/apt/lists/* /var/cache/debconf/templates.dat-old /var/lib/dpkg/status-old
|