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

Example

Parameters
ParameterValue
imageNamePatternnull
tagPatternnull
digestPatternnull
platformPatternnull
Before
FROM ubuntu:22.04
RUN apt-get update
After
~~(ubuntu:22.04)~~>FROM ubuntu:22.04
RUN apt-get update

Usage

This recipe has no required configuration options. Users of Moderne can run it via the Moderne CLI.

You will need to have configured the Moderne CLI on your machine before you can run the following command.

shell
mod run . --recipe FindBaseImages

If the recipe is not available locally, then you can install it using:

mod config recipes jar install org.openrewrite:rewrite-docker:8.73.2

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.