diff --git a/typescript/ecs/fargate-service-with-local-image/index.ts b/typescript/ecs/fargate-service-with-local-image/index.ts index 01b1946e0..da26eba30 100644 --- a/typescript/ecs/fargate-service-with-local-image/index.ts +++ b/typescript/ecs/fargate-service-with-local-image/index.ts @@ -20,7 +20,7 @@ new ecs_patterns.NetworkLoadBalancedFargateService(stack, "FargateService", { cluster, taskImageOptions: { image: ecs.ContainerImage.fromAsset(path.resolve(__dirname, 'local-image')) - } + }, }); app.synth();