in cdk-resources/lib/cdk-resources-stack.ts [254:261]
createECR(repositoryName:string){
return new ecr.Repository(this,repositoryName,{
repositoryName:repositoryName,
imageScanOnPush:true,
removalPolicy:RemovalPolicy.DESTROY // THIS SHOULD not be done for the Production Environment
})
}