Skip to content

Commit 56e8854

Browse files
Merge pull request #384 from code-dot-org/upgrade-codebuild-image
Update to latest amazon linux image
2 parents 4c7d74a + f54682d commit 56e8854

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

cicd/2-cicd/cicd.template.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ Resources:
160160
Environment:
161161
Type: LINUX_CONTAINER
162162
ComputeType: BUILD_GENERAL1_SMALL
163-
Image: aws/codebuild/amazonlinux2-x86_64-standard:3.0
163+
Image: aws/codebuild/standard:5.0
164164
PrivilegedMode: true
165165
EnvironmentVariables:
166166
- Name: ARTIFACT_STORE
@@ -183,7 +183,7 @@ Resources:
183183
Environment:
184184
Type: LINUX_CONTAINER
185185
ComputeType: BUILD_GENERAL1_SMALL
186-
Image: aws/codebuild/amazonlinux2-x86_64-standard:3.0
186+
Image: aws/codebuild/standard:5.0
187187
PrivilegedMode: true
188188
EnvironmentVariables:
189189
- Name: ARTIFACT_STORE

cicd/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ We also keep some CodeBuild configuration here, as this code tends to be more co
2020

2121
### 2 - CI/CD
2222

23-
In order to trigger the application resources to be updated upon changes to the source code, we need CI/CD resources. This is accomplished by a CloudFormation template that defines a stack of resources, primarily including a CodeBuild project and a CodePipeline pipeline which update the [App Stack](#3---app). These CI/CD resources only need to be deployed once per deployable branch, `main` in our case (we might choose to create development environments by launching a new CI/CD stack targeting a different branch).
23+
In order to trigger the application resources to be updated upon changes to the source code, we need CI/CD resources. This is accomplished by a CloudFormation template that defines a stack of resources, primarily including a CodeBuild project and a CodePipeline pipeline which update the [App Stack](#3---app). These CI/CD resources only need to be created once per deployable branch, `main` in our case (we might choose to create development environments by launching a new CI/CD stack targeting a different branch).
2424

2525
These resources are deployed manually when changes occur. We could make yet another CodePipeline resource in the [Setup](#1---setup) section, but not today.
2626

0 commit comments

Comments
 (0)