Skip to content

Commit

Permalink
fix: remove x86_64 form l1-contracts img tag (#3549)
Browse files Browse the repository at this point in the history
  • Loading branch information
spypsy committed Dec 4, 2023
1 parent ad66ad0 commit 6828f1a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion l1-contracts/scripts/ci_deploy_contracts.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ mkdir -p serve
docker run \
-v $(pwd)/serve:/usr/src/l1-contracts/serve \
-e ETHEREUM_HOST=$ETHEREUM_HOST -e PRIVATE_KEY=$CONTRACT_PUBLISHER_PRIVATE_KEY \
"$ECR_URL/l1-contracts:cache-$CONTENT_HASH"-x86_64 \
"$ECR_URL/l1-contracts:cache-$CONTENT_HASH" \
./scripts/deploy_contracts.sh

# Write the contract addresses as terraform variables
Expand Down
2 changes: 1 addition & 1 deletion yarn-project/aztec-node/terraform/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ resource "aws_ecs_task_definition" "aztec-node" {
"containerPort": 80
},
{
"containerPort": ${var.NODE_TCP_PORT + count.index + 1}
"containerPort": ${var.NODE_TCP_PORT + count.index}
}
],
"environment": [
Expand Down

0 comments on commit 6828f1a

Please sign in to comment.