Hello all,
I have a set of build scripts that spawn a docker container to build a set of artifacts in Python using PIP. One of the dependencies of these artifacts is, of course, the grpc library. The build script is basically pip installing a requirements.txt and zipping the dependencies.
I noticed the following odd behavior:
This is problematic, as these scripts are building an AWS Lambda layer, and having a single .so with 119M is a big no-no.
Do you have any idea why is this happening? How can I possibly build my package without having to carry a 119M file around?
Thanks,
David