Skip to content

Commit 0eba195

Browse files
authored
Update README.md
1 parent b2e28ef commit 0eba195

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,22 +14,22 @@ takes a JSON input file like event.json and returns an ASCII-art version of the
1414
$ cd example/
1515
```
1616

17-
The Dockerfile in the example directory loads the current workspace into the image and installs
18-
dependencies from the requirements.txt file:
17+
The `Dockerfile` in the example directory loads the current workspace into the image and installs
18+
dependencies from the `requirements.txt` file:
1919

2020
```
2121
FROM kilna/alpine-aws-python-lambda
2222
COPY . /workspace
2323
RUN pip install -r requirements.txt
2424
```
2525

26-
To build a docker image called 'example-lambda-image' with the lambda function in it, run:
26+
To build a docker image called `example-lambda-image` with the lambda function in it, run:
2727

2828
```
2929
$ docker build --tag example-lambda-image .
3030
```
3131

32-
If you want to execute the lambda function against an event.json input file:
32+
If you want to execute the lambda function against the `event.json` input file:
3333

3434
```
3535
$ docker run example-lambda-image lambda invoke

0 commit comments

Comments
 (0)