Pinned toolchain under hardware/eda/ so the design can be checked/simulated identically in the future (system KiCad is 7.0, which has no CLI ERC): - Containerfile: Ubuntu 24.04 + KiCad 9 (PPA) + ngspice + python3. - run.sh: build-if-needed + run with the repo mounted; lands in hardware/kicad. - sim/input_loading.cir: ngspice deck proving the line(25k) vs instrument(1M) input-loading decision — Hi-Z preserves a +16dB pickup resonance the 25k load flattens to -3dB. Verified: KiCad 9.0.9, ngspice-42, ERC runs clean (0 violations) on pm_k1_core.kicad_sch. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
28 lines
1.1 KiB
Docker
28 lines
1.1 KiB
Docker
# Reproducible EDA toolchain for the PM_K-1 core board.
|
|
#
|
|
# Why this exists: the system KiCad is 7.0 (no CLI ERC). This pins a known,
|
|
# rebuildable environment so the design can be checked/simulated identically
|
|
# years from now — fitting for a device meant to outlive its tools.
|
|
#
|
|
# KiCad 9 -> schematic capture, CLI ERC/DRC, netlist/PDF/Gerber export
|
|
# ngspice -> SPICE simulation of the analog audio circuits
|
|
# python3 -> scripting / BOM / skidl-style helpers
|
|
#
|
|
# Build/run via ../eda/run.sh (or: podman build -t pmk1-eda:9.0 .)
|
|
FROM docker.io/library/ubuntu:24.04
|
|
|
|
ENV DEBIAN_FRONTEND=noninteractive
|
|
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
|
|
|
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
software-properties-common ca-certificates gnupg && \
|
|
add-apt-repository -y ppa:kicad/kicad-9.0-releases && \
|
|
apt-get update && apt-get install -y --no-install-recommends \
|
|
kicad \
|
|
ngspice \
|
|
python3 python3-pip python3-venv \
|
|
git make && \
|
|
apt-get clean && rm -rf /var/lib/apt/lists/*
|
|
|
|
WORKDIR /work
|
|
CMD ["bash"]
|