In the working directory of an AWS Lambda function I have, there are just 3 files. Two of these files are Linux binaries that I must run each time the function is called (through spawnSync).
One of these binaries is about 80MB in size, which is the problem and makes the package size excessively large. This implies that I am unable to use the Lambda inline editor to deploy and test changes to the code or file structure.
It's really challenging for me to learn and debug because I'm so new to the AWS environment.
So, how should I go about modifying my Lambda functions' codebases when they are larger than 25MB? Is this something I ought to handle through GitHub? Should I be calling from a different location and storing my large binaries there instead?