diff options
author | 2023-05-04 09:47:18 +0100 | |
---|---|---|
committer | 2023-05-04 10:47:18 +0200 | |
commit | 83e94a91b948fb6cab353fb2c59cb2e53e67763a (patch) | |
tree | 1efdb586db3fd238da021d39cbcafce4e2a82361 /README.md | |
parent | efd9bd4c1b58f4a2b0ee5f5094778c2fd6604de8 (diff) | |
download | coredns-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.md | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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. |