Skip to content

Commit 3354354

Browse files
committed
documentation
1 parent 5c4ab93 commit 3354354

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-1
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# ⚡ 0.4.0 (unreleased)
22

3+
* experimental dockerless mode! To enable local builds add the following to your `serverless.yml` file
4+
5+
```yml
6+
custom:
7+
rust:
8+
dockerless: true
9+
```
10+
11+
This comes with some new expectations about your local environment. Please see the readme section on local builds for more information.
12+
313
* bump [lambda-rust](https://hub.docker.com/r/softprops/lambda-rust/) docker version to `0.2.7-rust-1.43.0`
414
* The docker image used to build artifacts is now configurable though the `custom.rust.dockerImage` `serverless.yml` config setting. The default remains `softprops/lambda-rust` [#65](https://github.com/softprops/serverless-rust/pull/65)
515
* The docker cli is now configurable via `SLS_DOCKER_CLI` environment variable. The default is the first `docker` that resolves on your operating system's path. [#61](https://github.com/softprops/serverless-rust/pull/61)

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,10 @@ custom:
6363

6464
While it's useful to have a build environment match your deployment
6565
environment, dockerized builds do come with some notable tradeoffs.
66-
The external dependency on docker itself often causes friction as an added dependency to your build. If you wish to build lambda's locally, this plugin also supports an experimental `dockerless` mode.
66+
67+
The external dependency on docker itself often causes friction as an added dependency to your build. Depending on the docker image limited which versions of rust you could deploy with. The docker image tracked stable rust. Some users might wish to try unstable versions early. Local builds enable that.
68+
69+
If you wish to build lambda's locally, this plugin also supports an experimental `dockerless` mode.
6770

6871
```diff
6972
custom:

0 commit comments

Comments
 (0)