Sign inSign up

daruizg/python-zip

By daruizg

Updated over 1 year ago

Python 3.13-slim with zip and pip preinstalled for fast AWS Lambda packaging

Image
Languages & frameworks
0

152

daruizg/python-zip repository overview

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).

  • Base: python:3.13-slim
  • Includes: zip, pip (latest)
  • Intended use: fast pip install -r requirements.txt -t build/ and zip -rq function.zip for Lambda deployments.

Usage

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 ..

Highlights

  • Base image: python:3.13-slim
  • Added layers: zip & upgraded pip
  • Primary use case: packaging AWS Lambda functions
  • Quick pull + example usage for CI pipelines

Tag summary

Content type

Image

Digest

sha256:83f8978ed

Size

45.9 MB

Last updated

over 1 year ago

docker pull daruizg/python-zip:3.13