in-toto VS apko

Compare in-toto vs apko and see what are their differences.

in-toto

in-toto is a framework to protect supply chain integrity. (by in-toto)

apko

Build OCI images from APK packages directly without Dockerfile (by chainguard-dev)
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
in-toto apko
4 14
827 1,060
0.8% 4.7%
8.9 9.4
9 days ago 1 day ago
Python Go
GNU General Public License v3.0 or later Apache License 2.0
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

in-toto

Posts with mentions or reviews of in-toto. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-11-14.
  • UEFI Software Bill of Materials Proposal
    8 projects | news.ycombinator.com | 14 Nov 2023
    The things you mentioned are not solved by a typical "SBOM" but e.g. CycloneDX has extra fields to record provenance and pedigree and things like in-toto (https://in-toto.io/) or SLSA (https://slsa.dev/) also aim to work in this field.

    I've spent the last six months in this field and people will tell you that this or that is an industry best practice or "a standard" but in my experience none of that is true. Everyone is still trying to figure out how best to protect the software supply chain security and things are still very much in flux.

  • An Overview of Kubernetes Security Projects at KubeCon Europe 2023
    17 projects | dev.to | 22 May 2023
    in-toto is an open source project that focuses on the attestation part of software supply chain security. You use it to define a “layout” for a project, i.e., how the different components should fit together. A project ships this definition with its code, and then another user of that software can compare what they have with the attached definition to see if it matches the structure and contents they expect. If it doesn’t, then this could point to external tampering or other issues.
  • How do you mitigate supply chain attacks?
    3 projects | /r/node | 12 Sep 2021
    But it's not all doom and gloom because the industry is evolving. Companies like Google are formulating tools like scorecard to heuristically reduce risk by encouraging you to rely on trustable dependencies only. There's also more complex tools like in-toto that actually look at the integrity of your supply chain (don't ask me how this one works, I just know that people like it).
  • in-toto/in-toto: in-toto is a framework to protect supply chain integrity.
    1 project | /r/devopsish | 4 Mar 2021

apko

Posts with mentions or reviews of apko. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-12-22.
  • Distroless images using melange and apko
    8 projects | dev.to | 22 Dec 2023
    apko allows us to build OCI container images from .apk packages.
  • Build OCI images from APK packages directly without Dockerfile
    1 project | news.ycombinator.com | 25 Sep 2023
  • Docker Is Four Things
    4 projects | news.ycombinator.com | 31 Aug 2023
    We have built something very similar to what you are describing: https://github.com/chainguard-dev/apko
  • Apko: APK-based OCI image builder
    1 project | news.ycombinator.com | 7 Aug 2023
  • Tool to build Docker images
    5 projects | /r/devops | 26 May 2023
    apko
  • An Overview of Kubernetes Security Projects at KubeCon Europe 2023
    17 projects | dev.to | 22 May 2023
    Chainguard also appears to have several open source projects.The most popular one is apko, used for building OCI images from APK packages.
  • aws-cli v2: how much smaller can it get? Answer: a lot smaller :)
    5 projects | dev.to | 19 Mar 2023
    Once those are done, I just need to build aws-cli package, put those APK files in a final image with Chainguard's apko.
  • Crafting container images without Dockerfiles
    20 projects | news.ycombinator.com | 6 Feb 2023
    This is one of my absolute favorite topics. Pardon me while I rant and self-promote :D

    Dockerfiles are great for flexibility, and have been a critical contributor to the adoption of Docker containers. It's very easy to take a base image, add a thing to it, and publish your version.

    Unfortunately Dockerfiles are also full of gotchas and opaque cargo-culted best practices to avoid them. Being an open-ended execution environment, it's basically impossible to tell even during the build what's being added to the image, which has downstream implications for anybody trying to get an SBOM from the image for example.

    Instead, I contribute to a number of tools to build and manage images without Dockerfiles. Each of them are less featureful than Dockerfiles, but being more constrained in what they can do, you can get a lot more visibility into what they're doing, since they're not able to do "whatever the user wants".

    1. https://github.com/google/go-containerregistry is a Go module to interact with images in the registry and in tarballs and layouts, in the local docker daemon. You can append layers, squash layers, modify metadata, etc.

    2. crane is a CLI that uses the above (in the same repo) to make many of the same modifications from the commandline. `crane append` for instance adds a layer containing some contents to an image, entirely in the registry, without even pulling the base image.

    3. ko (https://ko.build) is a tool to build Go applications into images without Dockerfiles or Docker at all. It runs `go build`, appends that binary on top of a base image, and pushes it directly to the registry. It generates an SBOM declaring what Go modules went into the app it put into the image, since that's all it can do.

    4. apko (https://apko.dev) is a tool to assemble an image from pre-built apks, without Docker. It's capable of producing "distroless" images easily with config in YAML. It generates an SBOM declaring exactly what apks it put in the image, since that's all it can do.

    Bazel's rules_docker is another contender in the space, and GCP's distroless images use it to place Debian .debs into an image. Apko is its spiritual successor, and uses YAML instead of Bazel's own config language, which makes it a lot easier to adopt and use (IMO), with all of the same benefits.

    I'm excited to see more folks realizing that Dockerfiles aren't always necessary, and can sometimes make your life harder. I'm extra excited to see more tools and tutorials digging into the details of how container images work, and preaching the gospel that they can be built and modified using existing tooling and relatively simple libraries. Excellent article!

  • Vulnerability scanner written in Go that uses osv.dev data
    7 projects | news.ycombinator.com | 16 Dec 2022
    Depends exactly what you're trying to create it for. I advocate for doing it during the build process rather than as a step after.

    We open sourced a few tools that do it automatically for containers:

    https://github.com/chainguard-dev/apko

    https://github.com/chainguard-dev/melange

  • Apko: A Better Way To Build Containers?
    3 projects | dev.to | 13 Oct 2022
    apko takes apk packages and builds them into OCI images (aka Docker images). Sounds quite simple, because it is:

What are some alternatives?

When comparing in-toto and apko you can also consider the following projects:

snyk - Snyk CLI scans and monitors your projects for security vulnerabilities. [Moved to: https://github.com/snyk/cli]

distroless - 🥑 Language focused docker images, minus the operating system.

scorecard - OpenSSF Scorecard - Security health metrics for Open Source

docker-pushmi-pullyu - Copy Docker images directly to a remote host without using Docker Hub or a hosted registry.

ochrona-cli - A command line tool for detecting vulnerabilities in Python dependencies and doing safe package installs

containerd - An open and reliable container runtime

pip-audit - Audits Python environments, requirements files and dependency trees for known security vulnerabilities, and can automatically fix them

melange - build APKs from source code

macOS-Security-and-Privacy-Guide - Guide to securing and improving privacy on macOS

osv-scanner - Vulnerability scanner written in Go which uses the data provided by https://osv.dev

i-probably-didnt-backdoor-this - A practical experiment on supply-chain security using reproducible builds

nerdctl - contaiNERD CTL - Docker-compatible CLI for containerd, with support for Compose, Rootless, eStargz, OCIcrypt, IPFS, ...