January 2019
Intermediate to advanced
520 pages
14h 32m
English
To build a lambda function, we need to produce a binary that is compatible with Amazon Linux. You can use three methods to build a corresponding binary:
We will use the latter method, because it minimizes the external dependencies of the produced binary. First, you have to install the musl library, which you can get here: https://www.musl-libc.org/.
I did this with the following commands:
git clone git://git.musl-libc.org/musl cd musl ./configure make sudo make install
But if there is a package for your operating system, you should to install that instead.
To build the code with ...
Read now
Unlock full access