Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/Shopify/hansel


https://github.com/Shopify/hansel

Last synced: 29 days ago
JSON representation

Awesome Lists containing this project

README

        

# Hansel

![OpenSSF Scorecard Badge](https://api.securityscorecards.dev/projects/github.com/Shopify/hansel/badge)

Hansel generates empty linux packages. These packages can be installed to track dependencies manually added to a container image.

[![Usage example](https://asciinema.org/a/497735.svg)](https://asciinema.org/a/497735)

## Usage

You can add hansel to an image, and generate + install tracking packages for dependencies in a single step:
```dockerfile
FROM node:18-alpine

COPY --from=ghcr.io/shopify/hansel:latest /usr/bin/hansel /usr/bin/hansel
RUN hansel --name node --version "$(node -v | sed -e's/^v//g')" --install
```

You can use hansel in a multistep build to generate and install separately:
```dockerfile
FROM ghcr.io/shopify/hansel:latest AS crumbs
RUN hansel --name rando-thing --version 1.2.3 --debian

FROM debian:bullseye
RUN curl -o /usr/bin/rando-thing https://rando.thing/v1.2.3/unsigned-blob-yolo
COPY --from=crumbs /rando-thing*.deb /tmp/rando-thing.deb
RUN dpkg -i /tmp/rando-thing.deb && \
rm /tmp/rando-thing.deb
```

The name is inspired by [Hansel and Gretel](https://en.wikipedia.org/wiki/Hansel_and_Gretel), as the packages are breadcrumbs left for container scanners to identify.