From babdef52f55feca351c9ba8148a4cb530ab50f68 Mon Sep 17 00:00:00 2001 From: Michael Cardell Widerkrantz Date: Wed, 16 Jul 2025 19:08:36 +0200 Subject: [PATCH] toolchain: Add Go package - Add Go 1.23. - Set up PATH for container to include the Go binaries. --- contrib/Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/contrib/Dockerfile b/contrib/Dockerfile index 7616eab..239afa9 100644 --- a/contrib/Dockerfile +++ b/contrib/Dockerfile @@ -18,6 +18,7 @@ RUN apt-get -qq update -y \ gawk \ gcc \ git \ + golang-1.23 \ gperf \ graphviz \ help2man \ @@ -68,3 +69,4 @@ RUN /buildtools.sh FROM base LABEL org.opencontainers.image.description="Toolchain for building TKey FPGA bitstream" COPY --from=toolsbuilder /usr/local/ /usr/local +ENV PATH="$PATH:/usr/lib/go-1.23/bin"