Skip to content

Commit

Permalink
Force X86 as other things need it
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewpatto committed Sep 19, 2024
1 parent f76e664 commit a69a130
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export class SummariseCopyLambdaStepConstruct extends Construct {
entry: join(root, "summarise-copy-lambda.ts"),
depsLockFilePath: join(root, "package-lock.json"),
runtime: Runtime.NODEJS_20_X,
architecture: Architecture.ARM_64,
architecture: Architecture.X86_64,
handler: "handler",
bundling: {
// we don't exactly need the performance benefits of minifying, and it is easier to debug without
Expand All @@ -50,7 +50,6 @@ export class SummariseCopyLambdaStepConstruct extends Construct {
forceDockerBundling: true,
// and these are the modules we need to install
nodeModules: ["csv-stringify"],
platform: "arm",
},
environment: {
WORKING_BUCKET: props.workingBucket,
Expand Down

0 comments on commit a69a130

Please sign in to comment.