zolweb / docker-lambda

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

docker-lambda

Manage DockerHub builds for lambda-node at ZOL

The intended purpose of this repository is to provide branches and tags for a docker image with node to emulate an aws lambda.

See CHANGELOG for all available versions.

This image is based on AWS Official Images, RIC and RIE. Instead of letting the container expose the port and having to make a curl request against it, the container accept directly a json file and will make the curl itself.

How to update

If you want to apply updates on this repository, checkout to the current tag you want to start with, create a new branch and apply your updates. Finally, tag the changes with a comprehensive changelog.

Before pushing your changes, make sure it works by building the image locally :

docker build -t zolweb/docker-lambda:latest .

Rules to follow

  • Each change must come with an updated CHANGELOG

Notable facts

Installed packages : this image should be used for development only, it contains multiple packages that may not be needed for production. Use it at your own risk.

This image is not designed to run in an AWS lambda. Please see the official documentation to build your own aws lambda image to do this.

Dockerhub

This project is built on dockerhub, on zolweb account. Images are free to use and come AS IS. ZOL is not responsible for any mis-usage or any problem it may cause.

Automatic building is enabled, any tag push or master push trigger a build as following :

Source Type Tag docker
main branch latest
/^[0-9.]+/ tag {sourceref}

Examples :

  • Pushing the tag 16.0.16 gives the image zolweb/docker-lambda:16.0.16
  • Pushing to main updates the image zolweb/docker-lambda:latest

You should not use latest tag, as the push order on this repository is done following our own needs, not node versions. Use tag instead.

How to use it

Assuming your directory structure look like :

your-lambda/
|---- events/
|---- | ---- example-event1.json
|---- | ---- example-event2.json
|---- src/
|---- | ---- index.js
|---- | ---- package.json

From the your-lambda directory, you may use this image like this :

docker run \
        --rm \
        -v $(PWD)/src:/var/task:ro,delegated \
        -v $(PWD)/events:/var/events:ro,delegated \
        -i \
        zolweb/docker-lambda:18.14 example-event1.json

Known issues

(rapid) output

You may see info and warning at each execution :

10 Mar 2023 11:19:54,322 [INFO] (rapid) exec '/var/runtime/bootstrap' (cwd=/var/task, handler=)
10 Mar 2023 11:19:54,326 [INFO] (rapid) extensionsDisabledByLayer(/opt/disable-extensions-jwigqn8j) -> stat /opt/disable-extensions-jwigqn8j: no such file or directory
10 Mar 2023 11:19:54,326 [WARNING] (rapid) Cannot list external agents error=open /opt/extensions: no such file or directory

The warning comes from AWS Lambda RIE / RIC, we don't know how to get rid of it (by fixing it, not hiding). There are some articles or stackoverflow posts (1, 2, 3) where it doesn't seem to bother anyone. Even if it's stressful for us to not understand why it appears, we can't do much about it.

console.log()

Due to how lambda works on production, the docker image managed by AWS adopt the exact same principles to be the most compliant possible. Unfortunately, there are internal process that change the behavior of console.log to replace new line by \r (explained here).

If you try to console.log a json object locally, you will get something like this :

const yourObject = {
  "jiraUsername": "xxxxxxxxxxxxxxxx",
  "jiraApiKey": "reallyLongValueHere",
  "jiraNamespace": "xxxxxxxxxxxxxxxx",
  "sqsIssuesQueueUrl": "xxxxxxxxxxxxxxxxxxx"
};
console.log(yourObject);

Result :

START RequestId: 4c6911b1-b80f-4fa5-ba3f-d97adac11c9a Version: $LATEST
  jiraApiKey: 'xxxxxxxxxxxxxx} sqsIssuesQueueUrl: 'xxxxxxxxxxxxxxxxxxx'
END RequestId: 4c6911b1-b80f-4fa5-ba3f-d97adac11c9a
REPORT RequestId: 4c6911b1-b80f-4fa5-ba3f-d97adac11c9a  Duration: 1.56 ms       Billed Duration: 2 ms   Memory Size: 3008 MB    Max Memory Used: 3008 MB

Note that the object here is completely malformed, there are not all the properties printed. (there are other examples)

To work around this, you have to stringify the object, and use process.stdout.write instead to get a nice print :

// Replace this
console.log(yourObject);
// By this
process.stdout.write(JSON.stringify(yourObject, null, "  ") + "\n");

Result :

START RequestId: 5b0b3b8a-00ca-4f8c-b462-25958364794b Version: $LATEST
{
  "jiraUsername": "xxxxxxxxxxxxxxxxxx",
  "jiraApiKey": "reallyLongValueHere",
  "jiraNamespace": "xxxxxxxxxxxxxxxxx",
  "sqsIssuesQueueUrl": "xxxxxxxxxxxxxxxxxxxx"
}
END RequestId: 5b0b3b8a-00ca-4f8c-b462-25958364794b
REPORT RequestId: 5b0b3b8a-00ca-4f8c-b462-25958364794b  Init Duration: 0.08 ms  Duration: 475.45 ms     Billed Duration: 476 ms Memory Size: 3008 MB    Max Memory Used: 3008 MB

About


Languages

Language:Shell 79.4%Language:Dockerfile 20.6%