Skip to content

Commit f880bb8

Browse files
committed
feat: Switch to official AWS docker images by default
BREAKING CHANGE: Switches to official AWS docker images from previous `lambci` images that did not support Python 3.9
1 parent a4cd36b commit f880bb8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ class ServerlessPythonRequirements {
9494
);
9595
} else if (!options.dockerFile) {
9696
// If no dockerFile is provided, use default image
97-
const defaultImage = `lambci/lambda:build-${this.serverless.service.provider.runtime}`;
97+
const defaultImage = `public.ecr.aws/sam/build-${this.serverless.service.provider.runtime}`;
9898
options.dockerImage = options.dockerImage || defaultImage;
9999
}
100100
if (options.layer) {

0 commit comments

Comments
 (0)