- I know about the "use GO runtime trick".
2., I am following Rust Runtime for AWS Lambda | AWS Open Source Blog
- I have musl-gcc wrapper installed. I can execute
cargo build --release --target x86_64-unknown-linux-musl
zip -j rust.zip ./target/x86_64-unknown-linux-musl/release/bootstrap
perfectly fine.
-
Now, for some reason, the tutorial stops using the CLI and starts using the web GUI for uploading the code.
-
Does anyone know how to do this step via CLI ? I want to be able to type "make deploy" instead of going through the GUI every time I need to upload an Lambda function.
Thanks!