1 Answer
- Newest
- Most votes
- Most comments
0
AWS Cloud Development Kit (CDK) is not built into AWS CodeBuild managed images. If you need CDK CLI in your build environment, you need to install it yourself as part of your buildspec, typically using npm install -g aws-cdk in the install phase. This will make sure you get the specific CDK version you need for your pipeline.
Use the latest standard CodeBuild images, or the equivalent ARM variant, to get the newest runtimes. The latest AWS CodeBuild image aws/codebuild/amazonlinux-x86_64-standard:5.0 includes Go versions 1.20, 1.21, 1.22, and 1.23.
answered a year ago
Relevant content
asked 4 years ago
asked 4 years ago
- AWS OFFICIALUpdated 9 months ago
