Python 3.13-slim with zip and pip preinstalled for fast AWS Lambda packaging
152
A minimal Python 3.13-slim image with ZIP and an up-to-date pip pre-installed. Optimized for building and packaging AWS Lambda functions (you no longer need to run apt-get install zip or pip install --upgrade pip in CI).
python:3.13-slimzip, pip (latest)pip install -r requirements.txt -t build/ and zip -rq function.zip for Lambda deployments.docker pull daruizg/python-zip:3.13
In CI/CD pipelines (Bitbucket, GitHub Actions, etc.):
image: daruizg/python-zip:3.13
script:
- rm -rf build function.zip
- mkdir -p build
- pip install -r requirements.txt -t build/
- cp -r app/* build/
- cd build && zip -rq ../function.zip . && cd ..
python:3.13-slimzip & upgraded pipContent type
Image
Digest
sha256:83f8978ed…
Size
45.9 MB
Last updated
over 1 year ago
docker pull daruizg/python-zip:3.13