What changed, and why it matters
This commit only updates release notes and simplifies a Dockerfile line by hardcoding the Go version instead of using a build argument. There is no security-relevant code change.
No action required; this is a documentation and minor Dockerfile cleanup commit with no security implications.
Security signals we found
No strong security signals were identified.
Evidence from the diff
The diff modifies docs/release-notes/release-notes-0.21.0.md to add a release-note entry about Docker documentation overhaul, and changes docker/btcd/Dockerfile from ‘ARG GO_VERSION=1.25.5’ followed by ‘FROM golang:${GO_VERSION}-alpine’ to a direct ‘FROM golang:1.25.5-alpine’. This is a documentation and build-cosmetic change with no functional or security impact.
Changed components
docker/btcd/Dockerfiledocs/release-notes/release-notes-0.21.0.mdInspect captured patch +7 / −2
diff --git a/docker/btcd/Dockerfile b/docker/btcd/Dockerfile
index 6b270c2..6e4ba58 100644
--- a/docker/btcd/Dockerfile
+++ b/docker/btcd/Dockerfile
@@ -1,7 +1,6 @@
# If you change this please also update GO_VERSION in Makefile (then run
# `make lint` to see where else it needs to be updated as well).
-ARG GO_VERSION=1.25.5
-FROM golang:${GO_VERSION}-alpine AS builder
+FROM golang:1.25.5-alpine AS builder
LABEL maintainer="Olaoluwa Osuntokun <laolu@lightning.engineering>"
diff --git a/docs/release-notes/release-notes-0.21.0.md b/docs/release-notes/release-notes-0.21.0.md
index d6ecb37..4b4fcae 100644
--- a/docs/release-notes/release-notes-0.21.0.md
+++ b/docs/release-notes/release-notes-0.21.0.md
@@ -234,6 +234,12 @@
## Tooling and Documentation
+* [Overhauled Docker documentation and environment](https://github.com/lightningnetwork/lnd/pull/10461)
+ to modernize the developer onboarding flow. Key updates include migrating
+ to Docker Compose V2, updating base images (btcd v0.25.0, Go 1.25.5),
+ and transitioning the documentation to focus on a more reliable "Simnet"
+ workflow while removing obsolete faucet references.
+
# Contributors (Alphabetical Order)
* bitromortac
Why this scored 15/100
Community notes
Notes can correct, qualify, or add evidence to the AI analysis. Every note shown here has been validated by a human moderator.
The AI analysis stands alone for now. Submit a note if you can add evidence or important context.