File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ RUN add-apt-repository --yes ppa:kicad/kicad-8.0-releases && \
18
18
apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 245D5502FAD7A805
19
19
20
20
# Install KiCad 8.0
21
- RUN apt update && apt install kicad -y
21
+ RUN apt update && apt install --install-recommends kicad -y
22
22
23
23
# Copy kicad-makefile and export environment location
24
24
COPY . kicad-makefile/
@@ -34,6 +34,11 @@ ENV BOM_CMD='python3 -m kibom'
34
34
# Add pcbnew module to PYTHONPATH
35
35
ENV PYTHONPATH=${PYTHONPATH}:/.kicad/scripting/plugins:/usr/share/kicad/scripting/plugins
36
36
37
+ # Copy default fp-lib-table to user home kicad config
38
+ RUN mkdir -p ~/.config/kicad/8.0 && \
39
+ cp /usr/share/kicad/template/fp-lib-table ~/.config/kicad/8.0/fp-lib-table && \
40
+ cp /usr/share/kicad/template/sym-lib-table ~/.config/kicad/8.0/sym-lib-table
41
+
37
42
# Set env to show running in container
38
43
ENV KICADMK_DOCKER=1
39
44
Original file line number Diff line number Diff line change 34
34
#
35
35
# * Project generated data will be output to '$(PROJECT_ROOT)/output/X' by default
36
36
# * Project distributables and production .zip datapacks will be output to '$(PROJECT_ROOT)/output/dist' and '$(PROJECT_ROOT)/output/prod' by default
37
- override KICADMK_VER = 1.1
37
+ override KICADMK_VER = 1.2
38
38
39
39
shell_output =
40
40
KICADMK_QUIET ?= 0
You can’t perform that action at this time.
0 commit comments