Skip to main content

Find Docker base images

org.openrewrite.docker.search.FindBaseImages

Find all base images (FROM instructions) in Dockerfiles.

Recipe source

GitHub: FindBaseImages.java, Issue Tracker, Maven Central

This recipe is available under the Apache License Version 2.0.

Options

TypeNameDescriptionExample
StringimageNamePatternOptional. A glob pattern to match against base image names. If not specified, all base images are matched.ubuntu*
StringtagPatternOptional. A glob pattern to match against image tags. If not specified, all tags are matched.20.*
StringdigestPatternOptional. A glob pattern to match against image digests. If not specified, all digests are matched.sha256:*
StringplatformPatternOptional. A glob pattern to match against platform flags. If not specified, all platforms are matched.linux/amd64

Usage

This recipe has no required configuration options. It can be activated by adding a dependency on org.openrewrite:rewrite-docker in your build file or by running a shell command (in which case no build changes are needed):

  1. Add the following to your build.gradle file:
build.gradle
plugins {
id("org.openrewrite.rewrite") version("latest.release")
}

rewrite {
activeRecipe("org.openrewrite.docker.search.FindBaseImages")
setExportDatatables(true)
}

repositories {
mavenCentral()
}

dependencies {
rewrite("org.openrewrite:rewrite-docker:8.73.0")
}
  1. Run gradle rewriteRun to run the recipe.

See how this recipe works across multiple open-source repositories

Run this recipe on OSS repos at scale with the Moderne SaaS.

The community edition of the Moderne platform enables you to easily run recipes across thousands of open-source repositories.

Please contact Moderne for more information about safely running the recipes on your own codebase in a private SaaS.

Data Tables

Docker base images

org.openrewrite.docker.table.BaseImages

Records the base images found in Dockerfiles.

Column NameDescription
Source fileThe Dockerfile containing the base image.
Stage nameThe build stage name (from AS clause), if specified.
Image nameThe name of the base image (without tag or digest).
TagThe image tag, if specified.
DigestThe image digest, if specified.
PlatformThe platform flag value, if specified.