diff options
author | 2022-06-25 14:54:52 +0200 | |
---|---|---|
committer | 2022-06-25 14:54:52 +0200 | |
commit | 497c31f09800d907dcafad4e2adc59a429263c2c (patch) | |
tree | 75113dfb5863c81949124e6cff2edb646347eb8f | |
parent | d7f8202dc3cb9c2d66e2d98dd9d84f708eed4d13 (diff) | |
download | coredns-497c31f09800d907dcafad4e2adc59a429263c2c.tar.gz coredns-497c31f09800d907dcafad4e2adc59a429263c2c.tar.zst coredns-497c31f09800d907dcafad4e2adc59a429263c2c.zip |
Bump circle-ci image and update README to build using latest go (#5458)
Signed-off-by: Ondřej Benkovský <ondrej.benkovsky@jamf.com>
-rw-r--r-- | .circleci/config.yml | 2 | ||||
-rw-r--r-- | README.md | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml index 83403770c..e1e0c0a4e 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -18,7 +18,7 @@ initWorkingDir: &initWorkingDir integrationDefaults: &integrationDefaults machine: - image: ubuntu-2004:202201-02 + image: ubuntu-2004:2022.04.2 working_directory: ~/go/src/${CIRCLE_PROJECT_USERNAME}/coredns environment: - K8S_VERSION: v1.22.0 @@ -73,7 +73,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.17 make +$ docker run --rm -i -t -v $PWD:/v -w /v golang:1.18 make ``` The above command alone will have `coredns` binary generated. |