So I am using AWS SAM to build and deploy some function to AWS Lambda. Because of my slow connection speed uploading functions is very slow, so I decided to create a Layer with requirements in it. So the next time when I try to deploy function I will not have to upload all 50 mb of requirements, and I can just use already uploaded layer.
Problem is that I could not find any parameter which lets me to just ignore requirements file and just deploy the source code.
Is it even possible?