From 8c13122206b53478cfb59c7e352d6acc18e4df1f Mon Sep 17 00:00:00 2001 From: wancup <62416191+wancup@users.noreply.github.com> Date: Wed, 23 Feb 2022 23:04:41 +0900 Subject: [PATCH] docs: fix docker mirror repository URL --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7b5b9c86..3f294139 100644 --- a/README.md +++ b/README.md @@ -209,7 +209,7 @@ $ npx serverless invoke -f hello -d '{"foo":"bar"}' ### Docker -Alternatively, you can build a Rust-based Lambda function in a [docker mirror of the AWS Lambda provided runtime with the Rust toolchain preinstalled](https://github.com/rustserverless/lambda-rust). +Alternatively, you can build a Rust-based Lambda function in a [docker mirror of the AWS Lambda provided runtime with the Rust toolchain preinstalled](https://github.com/rust-serverless/lambda-rust). Running the following command will start a ephemeral docker container which will build your Rust application and produce a zip file containing its binary auto-renamed to `bootstrap` to meet the AWS Lambda's expectations for binaries under `target/lambda_runtime/release/{your-binary-name}.zip`, typically this is just the name of your crate if you are using the cargo default binary (i.e. `main.rs`)