Skip to content

Commit 86a881a

Browse files
authored
Remove reference to unmaintained repository (#427)
* Remove reference to unmaintained repository * Update README.md
1 parent 3d5565d commit 86a881a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ $ npx serverless invoke -f hello -d '{"foo":"bar"}'
176176

177177
#### Docker
178178

179-
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/softprops/lambda-rust).
179+
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).
180180

181181
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`)
182182

@@ -186,7 +186,7 @@ $ docker run --rm \
186186
-v ${PWD}:/code \
187187
-v ${HOME}/.cargo/registry:/root/.cargo/registry \
188188
-v ${HOME}/.cargo/git:/root/.cargo/git \
189-
softprops/lambda-rust
189+
rustserverless/lambda-rust
190190
```
191191

192192
With your application build and packaged, it's ready to ship to production. You can also invoke it locally to verify is behavior using the [lambdaci :provided docker container](https://hub.docker.com/r/lambci/lambda/) which is also a mirror of the AWS Lambda provided runtime with build dependencies omitted.

0 commit comments

Comments
 (0)