docker-lambda icon indicating copy to clipboard operation
docker-lambda copied to clipboard

Docker images and test runners that replicate the live AWS Lambda environment

Results 68 docker-lambda issues
Sort by recently updated
recently updated
newest added

As these are hidden files which are not getting included in zip !

I installed docker toolbox on windows 7. When I run `docker run -v /d/projects/lambda/helloworld:/var/task lambci/lambda` I got the following error > {"errorMessage":"Cannot find module '/var/task/index'","errorType":"Error","stackTrace":["Function.Module._load (module.js:276:25)","Module.require (module.js:353:17)","require (internal/module.js:12:17)"]} I googled...

I have a .NET lambda function containing the following code: ``` this.config = new ConfigurationBuilder() .AddJsonFile("appSettings.json", optional: false, reloadOnChange: true) .Build(); ``` And a file appSettings.json that is copied to...

Hi! I'm trying to install the `tiny_tds` Gem. I have the following Dockerfile: ``` FROM lambci/lambda:build-ruby2.5 RUN yum -y install freetds RUN yum -y install freetds-devel ``` `freetds` and `freetds-devel`...

**TLDR**: `AppContext.GetData("PLATFORM_RESOURCE_ROOTS")` is not set the same as real Lambda runtime, so there is some difference between how the dotnet hosting environment is set up. -- When running using `aws-sam-cli`...

When trying to run a suite of jest unit tests I get repeated errors saying ``` Error: listen tcp 127.0.0.1:9001: bind: address already in use" ``` My first test will...

I'm using [GitHub Actions](https://github.com/features/actions) to run integration tests against your Docker image. Locally on my MacBook everything works fine but when they run in my `GitHub Actions` workflow I get...

Certain packages such as `ssh2-python` require openssl to build native assets. Would be nice if the build image could have openssl installed. The above install works after ```sh yum install...

I'm trying to run a lambda function locally, with the docker image set to Python3.6 For some reason, I get a weird error, even when there are no imports in...