Skip to content
This repository was archived by the owner on Dec 2, 2020. It is now read-only.

Commit 26a34ad

Browse files
committed
Fix paths in README
1 parent b91dc3e commit 26a34ad

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ docker run lambda-php goodbye '{"name": "World"}'
131131

132132
Run the tool to create and publish Lambda layers that contain the PHP custom runtime:
133133
```
134-
../bin/local/img2lambda -i lambda-php:latest -r us-east-1
134+
../bin/local/img2lambda -i lambda-php:latest -r us-east-1 -o ./output
135135
```
136136

137137
Create a PHP function that uses the layers:
@@ -147,7 +147,7 @@ aws lambda create-function \
147147
--runtime provided \
148148
--role "arn:aws:iam::XXXXXXXXXXXX:role/service-role/LambdaPhpExample" \
149149
--region us-east-1 \
150-
--layers file://../../output/layers.json
150+
--layers file://../output/layers.json
151151
```
152152

153153
Finally, invoke the function:

0 commit comments

Comments
 (0)