Skip to content

Latest commit

 

History

History
27 lines (19 loc) · 454 Bytes

File metadata and controls

27 lines (19 loc) · 454 Bytes

Rust lambda example

This repository is an example of AWS Lambda function empowered by Rust language.

Build

Clone this repository.

git clone https://github.com/yoshihitoh/rust-lambda-example

for Local

cargo build

for AWS Lambda

docker container run --rm \
    -v $PWD:/code \
    -v $HOME/.cargo/registry:/root/.cargo/registry \
    -v $HOME/.cargo/git:/root/.cargo/git \
    softprops/lambda-rust