diff --git a/Dockerfile b/Dockerfile index 45b3f6e..2820f12 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ FROM ubuntu:latest MAINTAINER John Whittington -LABEL Description="KiCad 7.0 with KiCad Makefile and plugins used" +LABEL Description="KiCad 8.0 with KiCad Makefile and plugins used" RUN apt update && \ apt upgrade -y && \ @@ -11,11 +11,11 @@ RUN apt update && \ RUN DEBIAN_FRONTEND=noninteractive apt install software-properties-common -y -# Adding the repository for KiCad 7.0 stable release -RUN add-apt-repository --yes ppa:kicad/kicad-7.0-releases && \ +# Adding the repository for KiCad 8.0 stable release +RUN add-apt-repository --yes ppa:kicad/kicad-8.0-releases && \ apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 245D5502FAD7A805 -# Install KiCad 7.0 +# Install KiCad 8.0 RUN apt update && apt install kicad -y # Copy kicad-makefile and export environment location diff --git a/README.md b/README.md index 919f0dc..d8bed10 100644 --- a/README.md +++ b/README.md @@ -26,6 +26,10 @@ The project also publish a [package](https://github.com/tuna-f1sh/kicad-makefile `docker pull ghcr.io/tuna-f1sh/kicad-makefile:latest` +The image uses the latest major KiCad release. For previous releases: + +* 7.0 [tag `v1.0`]: `ghcr.io/tuna-f1sh/kicad-makefile:v1.0` + ## Integration with CI/CD See my [entree project](https://github.com/tuna-f1sh/entree/actions) as an example of how to use this to build outputs for release etc.