Skip to content

Latest commit

 

History

History
22 lines (18 loc) · 561 Bytes

README.md

File metadata and controls

22 lines (18 loc) · 561 Bytes

PHP8 AWS Lambda Runtime docker image

Repo for the docker image for php8 compiled and runtime for aws lambda serverless

Create local build

docker build . -t php8-aws-lambda

Create server at port 9000

docker run --name aws-lambda -p 9000:8080 php8-aws-lambda

Simple local test

curl -XGET "http://localhost:9000/2015-03-31/functions/function/invocations"

To local test with query string params

curl -XPOST "http://localhost:9000/2015-03-31/functions/function/invocations" -d '{"queryStringParameters": {"name":"Leo"}}'