This repository has been archived on 2025-01-25. You can view files and clone it, but cannot push or open issues or pull requests.
kicad-build/Dockerfile
2024-05-22 22:18:10 +02:00

22 lines
452 B
Docker

FROM ubuntu:latest
# copy source code
RUN mkdir /app && cd /app
COPY ./kicad /app
RUN apt-get update && \
apt-get install -y \
build-essential cmake \
libegl1-mesa-dev glew-utils libglew-dev libglm-dev libcairo2-dev \
zlib1g-dev \
libcurl4-gnutls-dev \
libboost-all-dev \
libharfbuzz-dev \
libocct-foundation-dev
# ngspice-dev
RUN mkdir -p /app/build/release
WORKDIR /app/build/release
CMD [ "cmake", "-DKICAD_SPICE=OFF", "../../" ]