Skip to content

Commit 7f8251c

Browse files
committed
fix conflicts
2 parents 9e2680c + f4b7532 commit 7f8251c

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

app.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
stack_name_prefix = f"app-{env_name}"
1515
fully_qualified_domain_name = config["FQDN"]
1616
environment_tags = config["TAGS"]
17-
app_version = "edge"
17+
app_version = "latest"
1818

1919
# recursively apply tags to all stack resources
2020
if environment_tags:
@@ -49,7 +49,8 @@
4949
ecs_task_cpu=256,
5050
ecs_task_memory=512,
5151
container_name="my-app",
52-
container_location=f"ghcr.io/sage-bionetworks/my-app:{app_version}",
52+
# can also reference github with 'ghcr.io/sage-bionetworks/my-app:{app_version}'
53+
container_location=f"nginx:{app_version}",
5354
container_port=80,
5455
container_env_vars={
5556
"APP_VERSION": f"{app_version}",
@@ -62,8 +63,6 @@
6263
cluster=ecs_stack.cluster,
6364
props=app_props,
6465
load_balancer=load_balancer_stack.alb,
65-
certificate_arn=config["CERTIFICATE_ARN"],
66-
health_check_path="/health",
6766
)
6867

6968
cdk_app.synth()

0 commit comments

Comments
 (0)