Build environment for AWS Lambda functions written in Rust with crowbar
1.1K
The Dockerfile and build.sh script here help you build Lambda functions against libraries in Amazon Linux (used for the Lambda execution environment).
It's automatically built on Docker Hub as ilianaw/crowbar-builder and can be invoked like this from your source tree:
docker run --rm -v $(pwd):/code:ro ilianaw/crowbar-builder > lambda.zip
If you need extra packages, add them as arguments:
docker run --rm -v $(pwd):/code:ro ilianaw/crowbar-builder openssl-devel > lambda.zip
If you need to build with a nightly compiler set the TOOLCHAIN environment variable:
docker run --rm -v $(pwd):/code:ro -e TOOLCHAIN=nightly ilianaw/crowbar-builder > lambda.zip
Content type
Image
Digest
Size
552.5 MB
Last updated
over 8 years ago
docker pull ilianaw/crowbar-builder