create gerber files in CI pipeline

This commit is contained in:
j3d1 2021-07-12 20:51:38 +02:00
parent 8c775e9705
commit 8eb51b5aa9
7 changed files with 157 additions and 25 deletions

7
docker/pcb/Dockerfile Normal file
View file

@ -0,0 +1,7 @@
# syntax=docker/dockerfile:1
FROM setsoft/kicad_auto
RUN apt update && apt install -y make zip; mkdir /app; chown 1000:1000 /app; cd /app; useradd user
RUN mkdir -p /home/user; cp -r /root/.config /home/user/.config; chown 1000:1000 -R /home/user
RUN ls -la /home/user/.config
USER 1000
WORKDIR /app