Universal entry point for Docker images containing a WSGI app for the AWS Lambda.
Project description
Universal entry point for Docker images containing a Flask application for the AWS Lambda serverless platform.
Putting together:
- A web application written in Python that is compliant with the WSGI standard. Currently, only Flask is supported.
- A Docker image that contains the application code and dependencies
- AWS Lambda to run the code contained in the Docker image
- AWS API Gateway, that broadcasts web requests to and from your Lambda function
What it does
The package runs the relevant code depending on where it runs.
On the local computer, this is the debug server, serving requests to
127.0.0.1
right in the browser.
In the AWS Cloud, this is the handler that passes Gateway requests to and from the WSGI application.
Install
$ pip3 install git+https://github.com/rtmigo/lambdarado_py#egg=lambdarado
Configure
Dockerfile:
FROM public.ecr.aws/lambda/python:3.8
# ... here should be the code that creates the image ...
ENTRYPOINT ["python", "main.py"]
main.py
from lambdarado import hybrid_server
from my_app import app # WSGI app, e.g. Flask
hybrid_server(app)
Run
Local debug server
Running shell command on development machine:
$ python3 main.py
This will start Werkzeug server listening to http://127.0.0.1:5000.
Local debug server in Docker
Command-line:
$ docker run -p 6000:5000 docker-image-name
This will start Werkzeug server listening to http://0.0.0.0:5000 (inside the docker). The server is accessible as http://127.0.0.1:6000 from the host machine.
Production server on AWS Lambda
After deploying the same image as a Lambda function, it will serve the requests
to the AWS Gateway with your app
.
- You should connect the AWS Gateway to your Lambda function. For the function
to receive all HTTP requests, you may need to redirect the
/{proxy+}
route to the function and makelambda:InvokeFunction
policy less restrictive
Under the hood:
- The awslambdaric will receive requests from and send requests to the Lambda service
- The apig_wsgi will translate requests
received by
awslambdaric
from the AWS Gateway. So your application doesn't have to handle calls from the gateway directly. For the application, requests will look like normal HTTP
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for lambdarado-0.0.1-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | d2997f6a9032b6bb35aa3724bcbd52f75c330356725eb899ddff925898e2d3e7 |
|
MD5 | d546d3da21c6534e00645f40dbc511bf |
|
BLAKE2b-256 | dcdd042a875cfa0e9816a7436c48599b9fe0d81539d66759e5dd852ca650ea55 |