Skip to content

Commit cd4ec04

Browse files
committed
see what happens with these
1 parent e42c641 commit cd4ec04

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

dev-packages/e2e-tests/test-applications/aws-serverless/pull-sam-image.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ if [[ -z "$NODE_VERSION" ]]; then
1010
fi
1111

1212
echo "Pulling SAM Node $NODE_VERSION docker image..."
13-
docker pull "public.ecr.aws/sam/build-nodejs${NODE_VERSION}.x:latest"
13+
docker pull "public.ecr.aws/lambda/nodejs:${NODE_VERSION}"
1414

15-
echo "Successfully pulled SAM Node $NODE_VERSION docker image"
15+
echo "Successfully pulled Lambda Node $NODE_VERSION docker image"

dev-packages/e2e-tests/test-applications/aws-serverless/tests/lambda-fixtures.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ export const test = base.extend<{ testEnvironment: LocalLambdaStack; lambdaClien
4343
];
4444

4545
if (process.env.NODE_VERSION) {
46-
args.push('--invoke-image', `public.ecr.aws/sam/build-nodejs${process.env.NODE_VERSION}.x:latest`);
46+
args.push('--invoke-image', `public.ecr.aws/lambda/nodejs:${process.env.NODE_VERSION}`);
4747
}
4848

4949
console.log(`[testEnvironment fixture] Running SAM with args: ${args.join(' ')}`);

0 commit comments

Comments
 (0)