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

First of all: Thanks for your amazing work on this project! I understand it is possible to attach a remote debugger to process running in the docker container. However I'm...

Now that SAM CLI is v1.0.0, AWS has published some official images, such as `amazon/aws-sam-cli-emulation-image-java11` These don't seem to be documented anywhere, but it's probably better in the long run...

I have aws dotnet lamda function can I deploy it on docker container instead of AWS lamda ??

docker run --rm -v $(pwd):/foo -w /foo lambci/lambda:build-python3.6 pip install python-snappy --no-deps -t .

Docker-lambda does a great job of replicating the files that are available on Lambda, but the Docker containers expose pseudo-filesystems like `/dev/`, `/proc/`, and `/sys` in a more complete way...

I am running .net 2.1 code which completes with no errors but the docker container exits with 1 occasionally. This happens about 1% of the time. I am running this...

Hi. Lambci Docker images contain AWS Cli. I have a question. AWS Lambda Environment Java8 or Nodejs11 contain AWS Cli?

It is possible to use "[aws lambda update-function-code](https://awscli.amazonaws.com/v2/documentation/api/latest/reference/lambda/update-function-code.html)" when using "stay-open" API mode to update the lambda function code? It would be nice to **use the same AWS tool chain**...

I have this `index.js` file: ```javascript const serverless = require('serverless-http'); const express = require('express'); const app = express(); app.use(express.urlencoded({ extended: true })); app.use(express.json()); app.get('/', (req, res) => { res.status(200).send({ application:...

`lambci/lambda:build-python3.7` container contains `requests` module while AWS `python3.7` execution environment doesn't seem to. This causes our build system to skip bundling `requests` module along side the lambda code. The quick...