File tree 4 files changed +6
-5
lines changed
4 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -4,10 +4,10 @@ set -eu
4
4
5
5
# Redeploy services with the latest image that match $DEPLOY_TAG followed by $SERVICE_NAME.
6
6
SERVICE_NAME=$1
7
- PATTERN=" $DEPLOY_TAG .*$SERVICE_NAME . *"
7
+ PATTERN=" ${ DEPLOY_TAG} .*${ SERVICE_NAME} [^ \" ] *"
8
8
9
9
# Fetch list of services
10
- SERVICES=$( aws ecs list-services --region $ECR_DEPLOY_REGION --cluster setup | grep -Eo " arn:aws:ecs:[^:]+:[^:]+:service/[^/]+/$PATTERN " || true)
10
+ SERVICES=$( aws ecs list-services --region $ECR_DEPLOY_REGION --cluster setup | grep -Eo " arn:aws:ecs:[^:]+:[^:]+:service/[^/]+/${ PATTERN} " || true)
11
11
12
12
echo " Services to redeploy:"
13
13
echo " $SERVICES "
Original file line number Diff line number Diff line change 1
1
FROM 278380418400.dkr.ecr.eu-west-2.amazonaws.com/yarn-project-prod
2
2
WORKDIR /usr/src/yarn-project/aztec-faucet
3
- ENTRYPOINT ["yarn " , "start " ]
3
+ ENTRYPOINT ["node " , "--no-warnings" , "/usr/src/yarn-project/aztec-faucet/dest/bin/index.js " ]
4
4
EXPOSE 8080
Original file line number Diff line number Diff line change @@ -76,7 +76,7 @@ resource "aws_service_discovery_service" "aztec-faucet" {
76
76
77
77
# Define task definition and service.
78
78
resource "aws_ecs_task_definition" "aztec-faucet" {
79
- family = " ${ var . DEPLOY_TAG } -faucet"
79
+ family = " ${ var . DEPLOY_TAG } -aztec- faucet"
80
80
requires_compatibilities = [" FARGATE" ]
81
81
network_mode = " awsvpc"
82
82
cpu = " 2048"
Original file line number Diff line number Diff line change 1
1
proofs /
2
2
Prover.toml
3
3
Verifier.toml
4
- src /target
4
+ src /target
5
+ src /crs
You can’t perform that action at this time.
0 commit comments