File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff 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```
2121FROM kilna/alpine-aws-python-lambda
2222COPY . /workspace
2323RUN 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
You can’t perform that action at this time.
0 commit comments