diff --git a/docs/release-notes/release-notes-0.16.0.md b/docs/release-notes/release-notes-0.16.0.md index 991e07e20..3952878e7 100644 --- a/docs/release-notes/release-notes-0.16.0.md +++ b/docs/release-notes/release-notes-0.16.0.md @@ -294,6 +294,9 @@ certain large transactions](https://github.com/lightningnetwork/lnd/pull/7100). check](https://github.com/lightningnetwork/lnd/pull/7114) for all non-PR events. +* Fixed docker image version used in + [`tools`](https://github.com/lightningnetwork/lnd/pull/7254). + ### Integration test The `lntest` has been diff --git a/tools/Dockerfile b/tools/Dockerfile index 2707e0f67..4da8390c4 100644 --- a/tools/Dockerfile +++ b/tools/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.19.2-buster +FROM golang:1.19 RUN apt-get update && apt-get install -y git ENV GOCACHE=/tmp/build/.cache