Skip to main content

A tool to package Python AWS Lambda functions with zips, Docker containers, and layers.

Project description

Lambda Packer (BuildKit-Native)

lambda-packer is a "compiler" for AWS Lambda and Layers. Instead of running pip install on your host machine, it compiles your package_config.yaml into a BuildKit execution graph, ensuring your artifacts are always built in a runtime-correct, isolated environment.

🚀 Key Features

  • BuildKit-First: Zero host-side dependencies (except Docker). No more "it works on my machine" C-extension issues.
  • Standardized Context: Build from any folder on your machine; the tool automatically stages your source and layers.
  • Parallel Builds: High-performance execution using ThreadPoolExecutor and BuildKit's internal graph concurrency.
  • Multi-Platform: Built-in support for linux/amd64 and linux/arm64.
  • Deterministic ZIPs: Reproducible artifacts with fixed timestamps and sorted entries.
  • OCI Image Support: Build and push multi-platform Lambda images directly to a registry.

🚦 Quick Start

1. Initialize the project

uv sync

2. Run a Parallel Build

# Build with 4 parallel workers
uv run lambda-packer build --config package_config.yaml -j 4

3. Push to a Registry

Ensure you are logged into your registry (docker login), then run:

uv run lambda-packer build --config package_config.yaml --push

📖 Configuration (package_config.yaml)

The configuration supports absolute paths, allowing you to build Lambdas from other projects.

runtime_default: "python3.12"

layers:
  # Shared layer from an external project
  common-utils:
    path: ./common
    requirements: ./common/requirements.txt
    platforms: [linux/amd64, linux/arm64]

lambdas:
  # ZIP-based Lambda
  api-handler:
    path: ./lambdas/api
    type: zip
    layers: [common-utils]
    platforms: [linux/amd64, linux/arm64]

  # Image-based Lambda with custom tagging
  processor:
    path: ./samples/processor
    type: image
    image_tag: "my-registry.com/processor:{arch}"
    handler: "app.handler"
    layers: [common-utils]
    platforms: [linux/amd64, linux/arm64]

💻 CLI Usage

build command

uv run lambda-packer build [OPTIONS]

Options:

  • --config PATH: Path to your config YAML (default: package_config.yaml).
  • --dist PATH: Directory to store outputs (default: dist/).
  • --cache STR: BuildKit cache options (e.g., type=local,dest=.buildkit-cache).
  • --push: Push OCI images to the registry.
  • -j, --concurrency INT: Number of parallel builds (default: 1).

🏗 How it Works (Standardized Context)

The tool uses a "Staging Area" strategy to handle absolute paths and complex dependencies:

  1. Stage: A temporary directory is created for each build task.
  2. Map: Source code, requirements, and layers are copied/symlinked into standardized locations (src/, layer_<name>/).
  3. Compile: A multi-stage Dockerfile is generated to reference these fixed paths.
  4. Execute: BuildKit runs the build using this isolated staging directory as the context.

This ensures that only the necessary files are sent to Docker, making builds fast and independent of your local file structure.


🔒 Security & Determinism

All ZIP files are generated with a fixed timestamp (1980-01-01) and sorted file entries. This ensures that if your code doesn't change, the SHA-256 hash of your ZIP file remains identical, preventing unnecessary AWS Lambda deployments.


🛠 Development

Setup

git clone https://github.com/calvernaz/lambda-packer.git
cd lambda-packer
uv sync --extra dev

Running Tests

PYTHONPATH=src uv run pytest tests/

License

This project is licensed under the MIT License.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

lambda_packer-0.1.61.tar.gz (16.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

lambda_packer-0.1.61-py3-none-any.whl (14.6 kB view details)

Uploaded Python 3

File details

Details for the file lambda_packer-0.1.61.tar.gz.

File metadata

  • Download URL: lambda_packer-0.1.61.tar.gz
  • Upload date:
  • Size: 16.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for lambda_packer-0.1.61.tar.gz
Algorithm Hash digest
SHA256 8c71f069fbdb130f5772e26be15544dade85f44589686ffd49d63d4266ea63a1
MD5 5f63b16498047651cb37e797a2eb2060
BLAKE2b-256 4a0d5414fe458cc47c02ca71eae447576d7a0bee5d428563bd5f57796960c6b2

See more details on using hashes here.

File details

Details for the file lambda_packer-0.1.61-py3-none-any.whl.

File metadata

  • Download URL: lambda_packer-0.1.61-py3-none-any.whl
  • Upload date:
  • Size: 14.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for lambda_packer-0.1.61-py3-none-any.whl
Algorithm Hash digest
SHA256 91f708bca36781c6bcc18a04fcf3a4b4ee2a53495c74968a0523e7352ad87e16
MD5 e45bdc3b3f95e60e57179c9713387e0f
BLAKE2b-256 2334eb4587bb837f23d717ad405af9c91be164e3cc4ba9e53f0b86f03e91076c

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page