You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The content for some bullet points are not correctly indented or spaced.
This causes text and code blocks to not be displayed properly, causing confusion for customers.
This change indents the content of the bullet points so it is now correctly displayed increasing readability.
Copy file name to clipboardExpand all lines: README.md
+12-5
Original file line number
Diff line number
Diff line change
@@ -75,9 +75,10 @@ You can build RIE into a base image. Download the RIE from GitHub to your local
75
75
76
76
1. Create a script and save it in your project directory. Set execution permissions for the script file.
77
77
78
-
The script checks for the presence of the `AWS_LAMBDA_RUNTIME_API` environment variable, which indicates the presence of the runtime API. If the runtime API is present, the script runs [the runtime interface client](https://docs.aws.amazon.com/lambda/latest/dg/runtimes-images.html#runtimes-api-client). Otherwise, the script runs the runtime interface emulator.
78
+
The script checks for the presence of the `AWS_LAMBDA_RUNTIME_API` environment variable, which indicates the presence of the runtime API. If the runtime API is present, the script runs [the runtime interface client](https://docs.aws.amazon.com/lambda/latest/dg/runtimes-images.html#runtimes-api-client). Otherwise, the script runs the runtime interface emulator.
79
+
80
+
The following example shows a typical script for a Node.js function.
79
81
80
-
The following example shows a typical script for a Node.js function.
81
82
```
82
83
#!/bin/sh
83
84
if [ -z "${AWS_LAMBDA_RUNTIME_API}" ]; then
@@ -91,24 +92,28 @@ The following example shows a typical script for a Node.js function.
91
92
92
93
3. Install the emulator package and change `ENTRYPOINT` to run the new script by adding the following lines to your Dockerfile:
0 commit comments