├── .eslintignore ├── .github ├── FUNDING.yml └── workflows │ ├── ci-build.yml │ └── ci-run.yml ├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── base ├── .dockerignore ├── Dockerfile ├── amazonlinux1.txt ├── base-2 │ ├── Dockerfile │ ├── amazonlinux2.txt │ ├── diff.txt │ ├── dump-packages.sh │ ├── fs.txt │ ├── missing.txt │ └── packages.txt ├── build-2 │ └── Dockerfile ├── build-all-build.sh ├── build-all-run.sh ├── build-all.sh ├── build │ └── Dockerfile ├── create-base-2.sh ├── create-base.sh ├── create-build-2.sh ├── create-build.sh ├── dump-dotnetcore20 │ ├── Function.cs │ ├── Readme.md │ ├── aws-lambda-tools-defaults.json │ └── dump-dotnetcore20.csproj ├── dump-dotnetcore21 │ ├── Function.cs │ ├── Readme.md │ ├── aws-lambda-tools-defaults.json │ └── dump-dotnetcore21.csproj ├── dump-dotnetcore31 │ ├── Function.cs │ ├── aws-lambda-tools-defaults.json │ └── dump-dotnetcore31.csproj ├── dump-go1x │ ├── dump-go1x.go │ ├── go.mod │ └── go.sum ├── dump-java11 │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.buildship.core.prefs │ │ └── org.eclipse.jdt.core.prefs │ ├── build.gradle │ └── src │ │ └── main │ │ └── java │ │ └── org │ │ └── lambci │ │ └── lambda │ │ └── DumpJava11.java ├── dump-java8 │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.buildship.core.prefs │ │ ├── org.eclipse.core.resources.prefs │ │ └── org.eclipse.jdt.core.prefs │ ├── build.gradle │ └── src │ │ └── main │ │ └── java │ │ └── org │ │ └── lambci │ │ └── lambda │ │ └── DumpJava8.java ├── dump-java8al2 │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.buildship.core.prefs │ │ ├── org.eclipse.core.resources.prefs │ │ └── org.eclipse.jdt.core.prefs │ ├── build.gradle │ └── src │ │ └── main │ │ └── java │ │ └── org │ │ └── lambci │ │ └── lambda │ │ └── DumpJava8.java ├── dump-node10x.js ├── dump-node12x.js ├── dump-nodejs.js ├── dump-nodejs43.js ├── dump-nodejs610.js ├── dump-nodejs810.js ├── dump-packages.sh ├── dump-provided.sh ├── dump-providedal2 │ ├── bootstrap.go │ ├── go.mod │ └── go.sum ├── dump-python27.py ├── dump-python36.py ├── dump-python37.py ├── dump-python38.py ├── dump-ruby25.rb ├── dump-ruby27.rb ├── dump.sh ├── native-test.sh ├── packages.txt ├── publish-all.sh ├── runtimes.sh ├── tag-all.sh ├── tar-find-layer │ └── build.sh └── test-all.sh ├── docker-lambda.code-workspace ├── dotnetcore2.0 ├── build │ └── Dockerfile └── run │ ├── Dockerfile │ ├── MockBootstraps │ ├── DebuggerExtensions.cs │ ├── MockBootstraps.csproj │ ├── MockBootstraps.sln │ ├── MockLambdaContext.cs │ ├── MockRuntime.cs │ ├── Program.cs │ └── lib │ │ ├── Amazon.Lambda.Core.dll │ │ ├── Bootstrap.dll │ │ └── Bootstrap.pdb │ └── update_libs.sh ├── dotnetcore2.1 ├── build │ └── Dockerfile └── run │ ├── Dockerfile │ ├── MockBootstraps │ ├── DebuggerExtensions.cs │ ├── MockBootstraps.csproj │ ├── MockBootstraps.sln │ ├── MockLambdaContext.cs │ ├── MockRuntime.cs │ ├── Program.cs │ └── lib │ │ ├── Amazon.Lambda.Core.dll │ │ ├── Bootstrap.dll │ │ └── Bootstrap.pdb │ └── update_libs.sh ├── dotnetcore3.1 ├── build │ └── Dockerfile └── run │ └── Dockerfile ├── examples ├── docker-file │ ├── Dockerfile │ ├── index.js │ └── package.json ├── dotnetcore2.0 │ ├── Function.cs │ ├── README.md │ └── test.csproj ├── dotnetcore2.1 │ ├── Function.cs │ ├── README.md │ ├── test.csproj │ └── test.sln ├── dotnetcore3.1 │ ├── Function.cs │ ├── README.md │ ├── test.csproj │ └── test.sln ├── go1.x │ ├── go.mod │ ├── go.sum │ └── handler.go ├── java │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.buildship.core.prefs │ │ ├── org.eclipse.core.resources.prefs │ │ └── org.eclipse.jdt.core.prefs │ ├── README.md │ ├── build.gradle │ └── src │ │ └── main │ │ └── java │ │ └── org │ │ └── lambci │ │ └── lambda │ │ └── ExampleHandler.java ├── nodejs-native-module │ ├── index.js │ ├── package-lock.json │ ├── package.json │ └── test.js ├── nodejs6.10 │ ├── index.js │ └── package.json ├── nodejs8.10 │ ├── index.js │ └── package.json ├── post.lua ├── provided.al2 │ ├── bootstrap.go │ ├── go.mod │ └── go.sum ├── provided │ └── bootstrap ├── python │ └── lambda_function.py ├── ruby │ └── lambda_function.rb └── terminal3.png ├── go1.x ├── build │ └── Dockerfile └── run │ ├── Dockerfile │ ├── aws-lambda-mock.go │ ├── go.mod │ └── go.sum ├── index.js ├── java11 ├── build │ └── Dockerfile └── run │ └── Dockerfile ├── java8.al2 ├── build │ └── Dockerfile └── run │ └── Dockerfile ├── java8 ├── build │ └── Dockerfile └── run │ ├── Dockerfile │ ├── README.md │ └── lambda-runtime-mock │ ├── .classpath │ ├── .project │ ├── .settings │ └── org.eclipse.jdt.core.prefs │ ├── build.sh │ ├── gson-2.3.1.jar │ └── src │ └── main │ └── java │ └── lambdainternal │ └── LambdaRuntime.java ├── nodejs10.x ├── build │ └── Dockerfile └── run │ └── Dockerfile ├── nodejs12.x ├── build │ └── Dockerfile └── run │ └── Dockerfile ├── nodejs4.3 ├── build │ └── Dockerfile └── run │ ├── Dockerfile │ └── awslambda-mock.js ├── nodejs6.10 ├── build │ └── Dockerfile └── run │ ├── Dockerfile │ └── awslambda-mock.js ├── nodejs8.10 ├── build │ └── Dockerfile └── run │ ├── Dockerfile │ └── awslambda-mock.js ├── package.json ├── provided.al2 ├── build │ └── Dockerfile └── run │ └── Dockerfile ├── provided ├── build │ └── Dockerfile └── run │ ├── Dockerfile │ ├── go.mod │ ├── go.sum │ └── init.go ├── python2.7 ├── build │ └── Dockerfile └── run │ ├── Dockerfile │ └── runtime_mock.py ├── python3.6 ├── build │ └── Dockerfile └── run │ ├── Dockerfile │ └── runtime_mock.py ├── python3.7 ├── build │ └── Dockerfile └── run │ └── Dockerfile ├── python3.8 ├── build │ └── Dockerfile └── run │ └── Dockerfile ├── ruby2.5 ├── build │ └── Dockerfile └── run │ └── Dockerfile ├── ruby2.7 ├── build │ └── Dockerfile └── run │ └── Dockerfile └── test.js /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: mhart 4 | -------------------------------------------------------------------------------- /.github/workflows/ci-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/.github/workflows/ci-build.yml -------------------------------------------------------------------------------- /.github/workflows/ci-run.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/.github/workflows/ci-run.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/.npmignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/README.md -------------------------------------------------------------------------------- /base/.dockerignore: -------------------------------------------------------------------------------- 1 | ** 2 | !base*.tgz 3 | -------------------------------------------------------------------------------- /base/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/base/Dockerfile -------------------------------------------------------------------------------- /base/amazonlinux1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/base/amazonlinux1.txt -------------------------------------------------------------------------------- /base/base-2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/base/base-2/Dockerfile -------------------------------------------------------------------------------- /base/base-2/amazonlinux2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/base/base-2/amazonlinux2.txt -------------------------------------------------------------------------------- /base/base-2/diff.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/base/base-2/diff.txt -------------------------------------------------------------------------------- /base/base-2/dump-packages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/base/base-2/dump-packages.sh -------------------------------------------------------------------------------- /base/base-2/fs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/base/base-2/fs.txt -------------------------------------------------------------------------------- /base/base-2/missing.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/base/base-2/missing.txt -------------------------------------------------------------------------------- /base/base-2/packages.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/base/base-2/packages.txt -------------------------------------------------------------------------------- /base/build-2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/base/build-2/Dockerfile -------------------------------------------------------------------------------- /base/build-all-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/base/build-all-build.sh -------------------------------------------------------------------------------- /base/build-all-run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/base/build-all-run.sh -------------------------------------------------------------------------------- /base/build-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/base/build-all.sh -------------------------------------------------------------------------------- /base/build/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/base/build/Dockerfile -------------------------------------------------------------------------------- /base/create-base-2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/base/create-base-2.sh -------------------------------------------------------------------------------- /base/create-base.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/base/create-base.sh -------------------------------------------------------------------------------- /base/create-build-2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/base/create-build-2.sh -------------------------------------------------------------------------------- /base/create-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/base/create-build.sh -------------------------------------------------------------------------------- /base/dump-dotnetcore20/Function.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/base/dump-dotnetcore20/Function.cs -------------------------------------------------------------------------------- /base/dump-dotnetcore20/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/base/dump-dotnetcore20/Readme.md -------------------------------------------------------------------------------- /base/dump-dotnetcore20/aws-lambda-tools-defaults.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/base/dump-dotnetcore20/aws-lambda-tools-defaults.json -------------------------------------------------------------------------------- /base/dump-dotnetcore20/dump-dotnetcore20.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/base/dump-dotnetcore20/dump-dotnetcore20.csproj -------------------------------------------------------------------------------- /base/dump-dotnetcore21/Function.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/base/dump-dotnetcore21/Function.cs -------------------------------------------------------------------------------- /base/dump-dotnetcore21/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/base/dump-dotnetcore21/Readme.md -------------------------------------------------------------------------------- /base/dump-dotnetcore21/aws-lambda-tools-defaults.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/base/dump-dotnetcore21/aws-lambda-tools-defaults.json -------------------------------------------------------------------------------- /base/dump-dotnetcore21/dump-dotnetcore21.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/base/dump-dotnetcore21/dump-dotnetcore21.csproj -------------------------------------------------------------------------------- /base/dump-dotnetcore31/Function.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/base/dump-dotnetcore31/Function.cs -------------------------------------------------------------------------------- /base/dump-dotnetcore31/aws-lambda-tools-defaults.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/base/dump-dotnetcore31/aws-lambda-tools-defaults.json -------------------------------------------------------------------------------- /base/dump-dotnetcore31/dump-dotnetcore31.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/base/dump-dotnetcore31/dump-dotnetcore31.csproj -------------------------------------------------------------------------------- /base/dump-go1x/dump-go1x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/base/dump-go1x/dump-go1x.go -------------------------------------------------------------------------------- /base/dump-go1x/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/base/dump-go1x/go.mod -------------------------------------------------------------------------------- /base/dump-go1x/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/base/dump-go1x/go.sum -------------------------------------------------------------------------------- /base/dump-java11/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/base/dump-java11/.classpath -------------------------------------------------------------------------------- /base/dump-java11/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/base/dump-java11/.project -------------------------------------------------------------------------------- /base/dump-java11/.settings/org.eclipse.buildship.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/base/dump-java11/.settings/org.eclipse.buildship.core.prefs -------------------------------------------------------------------------------- /base/dump-java11/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/base/dump-java11/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /base/dump-java11/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/base/dump-java11/build.gradle -------------------------------------------------------------------------------- /base/dump-java11/src/main/java/org/lambci/lambda/DumpJava11.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/base/dump-java11/src/main/java/org/lambci/lambda/DumpJava11.java -------------------------------------------------------------------------------- /base/dump-java8/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/base/dump-java8/.classpath -------------------------------------------------------------------------------- /base/dump-java8/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/base/dump-java8/.project -------------------------------------------------------------------------------- /base/dump-java8/.settings/org.eclipse.buildship.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/base/dump-java8/.settings/org.eclipse.buildship.core.prefs -------------------------------------------------------------------------------- /base/dump-java8/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding//src/main/java=UTF-8 3 | -------------------------------------------------------------------------------- /base/dump-java8/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/base/dump-java8/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /base/dump-java8/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/base/dump-java8/build.gradle -------------------------------------------------------------------------------- /base/dump-java8/src/main/java/org/lambci/lambda/DumpJava8.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/base/dump-java8/src/main/java/org/lambci/lambda/DumpJava8.java -------------------------------------------------------------------------------- /base/dump-java8al2/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/base/dump-java8al2/.classpath -------------------------------------------------------------------------------- /base/dump-java8al2/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/base/dump-java8al2/.project -------------------------------------------------------------------------------- /base/dump-java8al2/.settings/org.eclipse.buildship.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/base/dump-java8al2/.settings/org.eclipse.buildship.core.prefs -------------------------------------------------------------------------------- /base/dump-java8al2/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding//src/main/java=UTF-8 3 | -------------------------------------------------------------------------------- /base/dump-java8al2/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/base/dump-java8al2/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /base/dump-java8al2/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/base/dump-java8al2/build.gradle -------------------------------------------------------------------------------- /base/dump-java8al2/src/main/java/org/lambci/lambda/DumpJava8.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/base/dump-java8al2/src/main/java/org/lambci/lambda/DumpJava8.java -------------------------------------------------------------------------------- /base/dump-node10x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/base/dump-node10x.js -------------------------------------------------------------------------------- /base/dump-node12x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/base/dump-node12x.js -------------------------------------------------------------------------------- /base/dump-nodejs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/base/dump-nodejs.js -------------------------------------------------------------------------------- /base/dump-nodejs43.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/base/dump-nodejs43.js -------------------------------------------------------------------------------- /base/dump-nodejs610.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/base/dump-nodejs610.js -------------------------------------------------------------------------------- /base/dump-nodejs810.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/base/dump-nodejs810.js -------------------------------------------------------------------------------- /base/dump-packages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/base/dump-packages.sh -------------------------------------------------------------------------------- /base/dump-provided.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/base/dump-provided.sh -------------------------------------------------------------------------------- /base/dump-providedal2/bootstrap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/base/dump-providedal2/bootstrap.go -------------------------------------------------------------------------------- /base/dump-providedal2/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/base/dump-providedal2/go.mod -------------------------------------------------------------------------------- /base/dump-providedal2/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/base/dump-providedal2/go.sum -------------------------------------------------------------------------------- /base/dump-python27.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/base/dump-python27.py -------------------------------------------------------------------------------- /base/dump-python36.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/base/dump-python36.py -------------------------------------------------------------------------------- /base/dump-python37.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/base/dump-python37.py -------------------------------------------------------------------------------- /base/dump-python38.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/base/dump-python38.py -------------------------------------------------------------------------------- /base/dump-ruby25.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/base/dump-ruby25.rb -------------------------------------------------------------------------------- /base/dump-ruby27.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/base/dump-ruby27.rb -------------------------------------------------------------------------------- /base/dump.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/base/dump.sh -------------------------------------------------------------------------------- /base/native-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/base/native-test.sh -------------------------------------------------------------------------------- /base/packages.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/base/packages.txt -------------------------------------------------------------------------------- /base/publish-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/base/publish-all.sh -------------------------------------------------------------------------------- /base/runtimes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/base/runtimes.sh -------------------------------------------------------------------------------- /base/tag-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/base/tag-all.sh -------------------------------------------------------------------------------- /base/tar-find-layer/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/base/tar-find-layer/build.sh -------------------------------------------------------------------------------- /base/test-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/base/test-all.sh -------------------------------------------------------------------------------- /docker-lambda.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/docker-lambda.code-workspace -------------------------------------------------------------------------------- /dotnetcore2.0/build/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/dotnetcore2.0/build/Dockerfile -------------------------------------------------------------------------------- /dotnetcore2.0/run/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/dotnetcore2.0/run/Dockerfile -------------------------------------------------------------------------------- /dotnetcore2.0/run/MockBootstraps/DebuggerExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/dotnetcore2.0/run/MockBootstraps/DebuggerExtensions.cs -------------------------------------------------------------------------------- /dotnetcore2.0/run/MockBootstraps/MockBootstraps.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/dotnetcore2.0/run/MockBootstraps/MockBootstraps.csproj -------------------------------------------------------------------------------- /dotnetcore2.0/run/MockBootstraps/MockBootstraps.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/dotnetcore2.0/run/MockBootstraps/MockBootstraps.sln -------------------------------------------------------------------------------- /dotnetcore2.0/run/MockBootstraps/MockLambdaContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/dotnetcore2.0/run/MockBootstraps/MockLambdaContext.cs -------------------------------------------------------------------------------- /dotnetcore2.0/run/MockBootstraps/MockRuntime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/dotnetcore2.0/run/MockBootstraps/MockRuntime.cs -------------------------------------------------------------------------------- /dotnetcore2.0/run/MockBootstraps/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/dotnetcore2.0/run/MockBootstraps/Program.cs -------------------------------------------------------------------------------- /dotnetcore2.0/run/MockBootstraps/lib/Amazon.Lambda.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/dotnetcore2.0/run/MockBootstraps/lib/Amazon.Lambda.Core.dll -------------------------------------------------------------------------------- /dotnetcore2.0/run/MockBootstraps/lib/Bootstrap.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/dotnetcore2.0/run/MockBootstraps/lib/Bootstrap.dll -------------------------------------------------------------------------------- /dotnetcore2.0/run/MockBootstraps/lib/Bootstrap.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/dotnetcore2.0/run/MockBootstraps/lib/Bootstrap.pdb -------------------------------------------------------------------------------- /dotnetcore2.0/run/update_libs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/dotnetcore2.0/run/update_libs.sh -------------------------------------------------------------------------------- /dotnetcore2.1/build/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/dotnetcore2.1/build/Dockerfile -------------------------------------------------------------------------------- /dotnetcore2.1/run/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/dotnetcore2.1/run/Dockerfile -------------------------------------------------------------------------------- /dotnetcore2.1/run/MockBootstraps/DebuggerExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/dotnetcore2.1/run/MockBootstraps/DebuggerExtensions.cs -------------------------------------------------------------------------------- /dotnetcore2.1/run/MockBootstraps/MockBootstraps.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/dotnetcore2.1/run/MockBootstraps/MockBootstraps.csproj -------------------------------------------------------------------------------- /dotnetcore2.1/run/MockBootstraps/MockBootstraps.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/dotnetcore2.1/run/MockBootstraps/MockBootstraps.sln -------------------------------------------------------------------------------- /dotnetcore2.1/run/MockBootstraps/MockLambdaContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/dotnetcore2.1/run/MockBootstraps/MockLambdaContext.cs -------------------------------------------------------------------------------- /dotnetcore2.1/run/MockBootstraps/MockRuntime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/dotnetcore2.1/run/MockBootstraps/MockRuntime.cs -------------------------------------------------------------------------------- /dotnetcore2.1/run/MockBootstraps/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/dotnetcore2.1/run/MockBootstraps/Program.cs -------------------------------------------------------------------------------- /dotnetcore2.1/run/MockBootstraps/lib/Amazon.Lambda.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/dotnetcore2.1/run/MockBootstraps/lib/Amazon.Lambda.Core.dll -------------------------------------------------------------------------------- /dotnetcore2.1/run/MockBootstraps/lib/Bootstrap.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/dotnetcore2.1/run/MockBootstraps/lib/Bootstrap.dll -------------------------------------------------------------------------------- /dotnetcore2.1/run/MockBootstraps/lib/Bootstrap.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/dotnetcore2.1/run/MockBootstraps/lib/Bootstrap.pdb -------------------------------------------------------------------------------- /dotnetcore2.1/run/update_libs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/dotnetcore2.1/run/update_libs.sh -------------------------------------------------------------------------------- /dotnetcore3.1/build/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/dotnetcore3.1/build/Dockerfile -------------------------------------------------------------------------------- /dotnetcore3.1/run/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/dotnetcore3.1/run/Dockerfile -------------------------------------------------------------------------------- /examples/docker-file/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/examples/docker-file/Dockerfile -------------------------------------------------------------------------------- /examples/docker-file/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/examples/docker-file/index.js -------------------------------------------------------------------------------- /examples/docker-file/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/examples/docker-file/package.json -------------------------------------------------------------------------------- /examples/dotnetcore2.0/Function.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/examples/dotnetcore2.0/Function.cs -------------------------------------------------------------------------------- /examples/dotnetcore2.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/examples/dotnetcore2.0/README.md -------------------------------------------------------------------------------- /examples/dotnetcore2.0/test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/examples/dotnetcore2.0/test.csproj -------------------------------------------------------------------------------- /examples/dotnetcore2.1/Function.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/examples/dotnetcore2.1/Function.cs -------------------------------------------------------------------------------- /examples/dotnetcore2.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/examples/dotnetcore2.1/README.md -------------------------------------------------------------------------------- /examples/dotnetcore2.1/test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/examples/dotnetcore2.1/test.csproj -------------------------------------------------------------------------------- /examples/dotnetcore2.1/test.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/examples/dotnetcore2.1/test.sln -------------------------------------------------------------------------------- /examples/dotnetcore3.1/Function.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/examples/dotnetcore3.1/Function.cs -------------------------------------------------------------------------------- /examples/dotnetcore3.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/examples/dotnetcore3.1/README.md -------------------------------------------------------------------------------- /examples/dotnetcore3.1/test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/examples/dotnetcore3.1/test.csproj -------------------------------------------------------------------------------- /examples/dotnetcore3.1/test.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/examples/dotnetcore3.1/test.sln -------------------------------------------------------------------------------- /examples/go1.x/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/examples/go1.x/go.mod -------------------------------------------------------------------------------- /examples/go1.x/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/examples/go1.x/go.sum -------------------------------------------------------------------------------- /examples/go1.x/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/examples/go1.x/handler.go -------------------------------------------------------------------------------- /examples/java/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/examples/java/.classpath -------------------------------------------------------------------------------- /examples/java/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/examples/java/.project -------------------------------------------------------------------------------- /examples/java/.settings/org.eclipse.buildship.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/examples/java/.settings/org.eclipse.buildship.core.prefs -------------------------------------------------------------------------------- /examples/java/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding//src/main/java=UTF-8 3 | -------------------------------------------------------------------------------- /examples/java/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/examples/java/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /examples/java/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/examples/java/README.md -------------------------------------------------------------------------------- /examples/java/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/examples/java/build.gradle -------------------------------------------------------------------------------- /examples/java/src/main/java/org/lambci/lambda/ExampleHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/examples/java/src/main/java/org/lambci/lambda/ExampleHandler.java -------------------------------------------------------------------------------- /examples/nodejs-native-module/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/examples/nodejs-native-module/index.js -------------------------------------------------------------------------------- /examples/nodejs-native-module/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/examples/nodejs-native-module/package-lock.json -------------------------------------------------------------------------------- /examples/nodejs-native-module/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/examples/nodejs-native-module/package.json -------------------------------------------------------------------------------- /examples/nodejs-native-module/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/examples/nodejs-native-module/test.js -------------------------------------------------------------------------------- /examples/nodejs6.10/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/examples/nodejs6.10/index.js -------------------------------------------------------------------------------- /examples/nodejs6.10/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/examples/nodejs6.10/package.json -------------------------------------------------------------------------------- /examples/nodejs8.10/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/examples/nodejs8.10/index.js -------------------------------------------------------------------------------- /examples/nodejs8.10/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/examples/nodejs8.10/package.json -------------------------------------------------------------------------------- /examples/post.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/examples/post.lua -------------------------------------------------------------------------------- /examples/provided.al2/bootstrap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/examples/provided.al2/bootstrap.go -------------------------------------------------------------------------------- /examples/provided.al2/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/examples/provided.al2/go.mod -------------------------------------------------------------------------------- /examples/provided.al2/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/examples/provided.al2/go.sum -------------------------------------------------------------------------------- /examples/provided/bootstrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/examples/provided/bootstrap -------------------------------------------------------------------------------- /examples/python/lambda_function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/examples/python/lambda_function.py -------------------------------------------------------------------------------- /examples/ruby/lambda_function.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/examples/ruby/lambda_function.rb -------------------------------------------------------------------------------- /examples/terminal3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/examples/terminal3.png -------------------------------------------------------------------------------- /go1.x/build/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/go1.x/build/Dockerfile -------------------------------------------------------------------------------- /go1.x/run/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/go1.x/run/Dockerfile -------------------------------------------------------------------------------- /go1.x/run/aws-lambda-mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/go1.x/run/aws-lambda-mock.go -------------------------------------------------------------------------------- /go1.x/run/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/go1.x/run/go.mod -------------------------------------------------------------------------------- /go1.x/run/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/go1.x/run/go.sum -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/index.js -------------------------------------------------------------------------------- /java11/build/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/java11/build/Dockerfile -------------------------------------------------------------------------------- /java11/run/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/java11/run/Dockerfile -------------------------------------------------------------------------------- /java8.al2/build/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/java8.al2/build/Dockerfile -------------------------------------------------------------------------------- /java8.al2/run/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/java8.al2/run/Dockerfile -------------------------------------------------------------------------------- /java8/build/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/java8/build/Dockerfile -------------------------------------------------------------------------------- /java8/run/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/java8/run/Dockerfile -------------------------------------------------------------------------------- /java8/run/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/java8/run/README.md -------------------------------------------------------------------------------- /java8/run/lambda-runtime-mock/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/java8/run/lambda-runtime-mock/.classpath -------------------------------------------------------------------------------- /java8/run/lambda-runtime-mock/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/java8/run/lambda-runtime-mock/.project -------------------------------------------------------------------------------- /java8/run/lambda-runtime-mock/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/java8/run/lambda-runtime-mock/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /java8/run/lambda-runtime-mock/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/java8/run/lambda-runtime-mock/build.sh -------------------------------------------------------------------------------- /java8/run/lambda-runtime-mock/gson-2.3.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/java8/run/lambda-runtime-mock/gson-2.3.1.jar -------------------------------------------------------------------------------- /java8/run/lambda-runtime-mock/src/main/java/lambdainternal/LambdaRuntime.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/java8/run/lambda-runtime-mock/src/main/java/lambdainternal/LambdaRuntime.java -------------------------------------------------------------------------------- /nodejs10.x/build/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/nodejs10.x/build/Dockerfile -------------------------------------------------------------------------------- /nodejs10.x/run/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/nodejs10.x/run/Dockerfile -------------------------------------------------------------------------------- /nodejs12.x/build/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/nodejs12.x/build/Dockerfile -------------------------------------------------------------------------------- /nodejs12.x/run/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/nodejs12.x/run/Dockerfile -------------------------------------------------------------------------------- /nodejs4.3/build/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/nodejs4.3/build/Dockerfile -------------------------------------------------------------------------------- /nodejs4.3/run/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/nodejs4.3/run/Dockerfile -------------------------------------------------------------------------------- /nodejs4.3/run/awslambda-mock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/nodejs4.3/run/awslambda-mock.js -------------------------------------------------------------------------------- /nodejs6.10/build/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/nodejs6.10/build/Dockerfile -------------------------------------------------------------------------------- /nodejs6.10/run/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/nodejs6.10/run/Dockerfile -------------------------------------------------------------------------------- /nodejs6.10/run/awslambda-mock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/nodejs6.10/run/awslambda-mock.js -------------------------------------------------------------------------------- /nodejs8.10/build/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/nodejs8.10/build/Dockerfile -------------------------------------------------------------------------------- /nodejs8.10/run/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/nodejs8.10/run/Dockerfile -------------------------------------------------------------------------------- /nodejs8.10/run/awslambda-mock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/nodejs8.10/run/awslambda-mock.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/package.json -------------------------------------------------------------------------------- /provided.al2/build/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/provided.al2/build/Dockerfile -------------------------------------------------------------------------------- /provided.al2/run/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/provided.al2/run/Dockerfile -------------------------------------------------------------------------------- /provided/build/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/provided/build/Dockerfile -------------------------------------------------------------------------------- /provided/run/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/provided/run/Dockerfile -------------------------------------------------------------------------------- /provided/run/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/provided/run/go.mod -------------------------------------------------------------------------------- /provided/run/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/provided/run/go.sum -------------------------------------------------------------------------------- /provided/run/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/provided/run/init.go -------------------------------------------------------------------------------- /python2.7/build/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/python2.7/build/Dockerfile -------------------------------------------------------------------------------- /python2.7/run/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/python2.7/run/Dockerfile -------------------------------------------------------------------------------- /python2.7/run/runtime_mock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/python2.7/run/runtime_mock.py -------------------------------------------------------------------------------- /python3.6/build/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/python3.6/build/Dockerfile -------------------------------------------------------------------------------- /python3.6/run/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/python3.6/run/Dockerfile -------------------------------------------------------------------------------- /python3.6/run/runtime_mock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/python3.6/run/runtime_mock.py -------------------------------------------------------------------------------- /python3.7/build/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/python3.7/build/Dockerfile -------------------------------------------------------------------------------- /python3.7/run/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/python3.7/run/Dockerfile -------------------------------------------------------------------------------- /python3.8/build/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/python3.8/build/Dockerfile -------------------------------------------------------------------------------- /python3.8/run/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/python3.8/run/Dockerfile -------------------------------------------------------------------------------- /ruby2.5/build/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/ruby2.5/build/Dockerfile -------------------------------------------------------------------------------- /ruby2.5/run/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/ruby2.5/run/Dockerfile -------------------------------------------------------------------------------- /ruby2.7/build/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/ruby2.7/build/Dockerfile -------------------------------------------------------------------------------- /ruby2.7/run/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/ruby2.7/run/Dockerfile -------------------------------------------------------------------------------- /test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/docker-lambda/HEAD/test.js --------------------------------------------------------------------------------