├── .circleci └── config.yml ├── .github ├── CODEOWNERS ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE │ ├── cimg-bug-report.md │ ├── cimg-feature-request.md │ └── config.yml └── pull_request_template.md ├── .gitmodules ├── 1.17 ├── Dockerfile ├── browsers │ └── Dockerfile └── node │ └── Dockerfile ├── 1.18 ├── Dockerfile ├── browsers │ └── Dockerfile └── node │ └── Dockerfile ├── 1.19 ├── Dockerfile ├── browsers │ └── Dockerfile └── node │ └── Dockerfile ├── 1.20 ├── Dockerfile ├── browsers │ └── Dockerfile └── node │ └── Dockerfile ├── 1.21 ├── Dockerfile ├── browsers │ └── Dockerfile └── node │ └── Dockerfile ├── 1.22 ├── Dockerfile ├── browsers │ └── Dockerfile └── node │ └── Dockerfile ├── 1.23 ├── Dockerfile ├── browsers │ └── Dockerfile └── node │ └── Dockerfile ├── 1.24 ├── Dockerfile ├── browsers │ └── Dockerfile └── node │ └── Dockerfile ├── 1.25 ├── Dockerfile ├── browsers │ └── Dockerfile └── node │ └── Dockerfile ├── Dockerfile.template ├── GEN-CHECK ├── LICENSE ├── README.md ├── goFeed.sh ├── img ├── circle-circleci.svg ├── circle-docker.svg └── circle-go.svg ├── manifest ├── push-images.sh └── renovate.json5 /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CircleCI-Public/cimg-go/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @CircleCI-Public/images 2 | -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CircleCI-Public/cimg-go/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/cimg-bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CircleCI-Public/cimg-go/HEAD/.github/ISSUE_TEMPLATE/cimg-bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/cimg-feature-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CircleCI-Public/cimg-go/HEAD/.github/ISSUE_TEMPLATE/cimg-feature-request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CircleCI-Public/cimg-go/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CircleCI-Public/cimg-go/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CircleCI-Public/cimg-go/HEAD/.gitmodules -------------------------------------------------------------------------------- /1.17/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CircleCI-Public/cimg-go/HEAD/1.17/Dockerfile -------------------------------------------------------------------------------- /1.17/browsers/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CircleCI-Public/cimg-go/HEAD/1.17/browsers/Dockerfile -------------------------------------------------------------------------------- /1.17/node/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CircleCI-Public/cimg-go/HEAD/1.17/node/Dockerfile -------------------------------------------------------------------------------- /1.18/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CircleCI-Public/cimg-go/HEAD/1.18/Dockerfile -------------------------------------------------------------------------------- /1.18/browsers/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CircleCI-Public/cimg-go/HEAD/1.18/browsers/Dockerfile -------------------------------------------------------------------------------- /1.18/node/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CircleCI-Public/cimg-go/HEAD/1.18/node/Dockerfile -------------------------------------------------------------------------------- /1.19/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CircleCI-Public/cimg-go/HEAD/1.19/Dockerfile -------------------------------------------------------------------------------- /1.19/browsers/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CircleCI-Public/cimg-go/HEAD/1.19/browsers/Dockerfile -------------------------------------------------------------------------------- /1.19/node/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CircleCI-Public/cimg-go/HEAD/1.19/node/Dockerfile -------------------------------------------------------------------------------- /1.20/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CircleCI-Public/cimg-go/HEAD/1.20/Dockerfile -------------------------------------------------------------------------------- /1.20/browsers/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CircleCI-Public/cimg-go/HEAD/1.20/browsers/Dockerfile -------------------------------------------------------------------------------- /1.20/node/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CircleCI-Public/cimg-go/HEAD/1.20/node/Dockerfile -------------------------------------------------------------------------------- /1.21/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CircleCI-Public/cimg-go/HEAD/1.21/Dockerfile -------------------------------------------------------------------------------- /1.21/browsers/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CircleCI-Public/cimg-go/HEAD/1.21/browsers/Dockerfile -------------------------------------------------------------------------------- /1.21/node/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CircleCI-Public/cimg-go/HEAD/1.21/node/Dockerfile -------------------------------------------------------------------------------- /1.22/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CircleCI-Public/cimg-go/HEAD/1.22/Dockerfile -------------------------------------------------------------------------------- /1.22/browsers/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CircleCI-Public/cimg-go/HEAD/1.22/browsers/Dockerfile -------------------------------------------------------------------------------- /1.22/node/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CircleCI-Public/cimg-go/HEAD/1.22/node/Dockerfile -------------------------------------------------------------------------------- /1.23/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CircleCI-Public/cimg-go/HEAD/1.23/Dockerfile -------------------------------------------------------------------------------- /1.23/browsers/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CircleCI-Public/cimg-go/HEAD/1.23/browsers/Dockerfile -------------------------------------------------------------------------------- /1.23/node/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CircleCI-Public/cimg-go/HEAD/1.23/node/Dockerfile -------------------------------------------------------------------------------- /1.24/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CircleCI-Public/cimg-go/HEAD/1.24/Dockerfile -------------------------------------------------------------------------------- /1.24/browsers/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CircleCI-Public/cimg-go/HEAD/1.24/browsers/Dockerfile -------------------------------------------------------------------------------- /1.24/node/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CircleCI-Public/cimg-go/HEAD/1.24/node/Dockerfile -------------------------------------------------------------------------------- /1.25/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CircleCI-Public/cimg-go/HEAD/1.25/Dockerfile -------------------------------------------------------------------------------- /1.25/browsers/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CircleCI-Public/cimg-go/HEAD/1.25/browsers/Dockerfile -------------------------------------------------------------------------------- /1.25/node/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CircleCI-Public/cimg-go/HEAD/1.25/node/Dockerfile -------------------------------------------------------------------------------- /Dockerfile.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CircleCI-Public/cimg-go/HEAD/Dockerfile.template -------------------------------------------------------------------------------- /GEN-CHECK: -------------------------------------------------------------------------------- 1 | GEN_CHECK=(1.25.4 1.24.10) 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CircleCI-Public/cimg-go/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CircleCI-Public/cimg-go/HEAD/README.md -------------------------------------------------------------------------------- /goFeed.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CircleCI-Public/cimg-go/HEAD/goFeed.sh -------------------------------------------------------------------------------- /img/circle-circleci.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CircleCI-Public/cimg-go/HEAD/img/circle-circleci.svg -------------------------------------------------------------------------------- /img/circle-docker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CircleCI-Public/cimg-go/HEAD/img/circle-docker.svg -------------------------------------------------------------------------------- /img/circle-go.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CircleCI-Public/cimg-go/HEAD/img/circle-go.svg -------------------------------------------------------------------------------- /manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CircleCI-Public/cimg-go/HEAD/manifest -------------------------------------------------------------------------------- /push-images.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CircleCI-Public/cimg-go/HEAD/push-images.sh -------------------------------------------------------------------------------- /renovate.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CircleCI-Public/cimg-go/HEAD/renovate.json5 --------------------------------------------------------------------------------