aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorGravatar Ayato Tokubi <atokubi@redhat.com> 2023-05-04 09:47:18 +0100
committerGravatar GitHub <noreply@github.com> 2023-05-04 10:47:18 +0200
commit83e94a91b948fb6cab353fb2c59cb2e53e67763a (patch)
tree1efdb586db3fd238da021d39cbcafce4e2a82361 /README.md
parentefd9bd4c1b58f4a2b0ee5f5094778c2fd6604de8 (diff)
downloadcoredns-83e94a91b948fb6cab353fb2c59cb2e53e67763a.tar.gz
coredns-83e94a91b948fb6cab353fb2c59cb2e53e67763a.tar.zst
coredns-83e94a91b948fb6cab353fb2c59cb2e53e67763a.zip
Bump golang to 1.20.0 (#6070)
Signed-off-by: Ayato Tokubi <atokubi@redhat.com>
Diffstat (limited to 'README.md')
-rw-r--r--README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index aedf29d4a..54b3ac837 100644
--- a/README.md
+++ b/README.md
@@ -53,7 +53,7 @@ out-of-tree plugins.
To compile CoreDNS, we assume you have a working Go setup. See various tutorials if you don’t have
that already configured.
-First, make sure your golang version is 1.17 or higher as `go mod` support and other api is needed.
+First, make sure your golang version is 1.20 or higher as `go mod` support and other api is needed.
See [here](https://github.com/golang/go/wiki/Modules) for `go mod` details.
Then, check out the project and run `make` to compile the binary:
@@ -71,7 +71,7 @@ CoreDNS requires Go to compile. However, if you already have docker installed an
setup a Go environment, you could build CoreDNS easily:
```
-$ docker run --rm -i -t -v $PWD:/v -w /v golang:1.18 make
+$ docker run --rm -i -t -v $PWD:/v -w /v golang:1.20 make
```
The above command alone will have `coredns` binary generated.