Sign inSign up

ilianaw/crowbar-builder

By ilianaw

Updated over 8 years ago

Build environment for AWS Lambda functions written in Rust with crowbar

Image
0

1.1K

ilianaw/crowbar-builder repository overview

Building Lambda functions with crowbar in Docker

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

Tag summary

Content type

Image

Digest

Size

552.5 MB

Last updated

over 8 years ago

docker pull ilianaw/crowbar-builder