Build-only and Push-only Options for Docker Images
You can build images without pushing them Or push a pre-built image without building.
Each organization may have different workflows to build and push Docker images. One common scenario is to build an image locally, scan it for vulnerabilities, and push only after a successful scan.
Harness CI now supports these workflows by passing environment variables to adjust the default behavior of the native Build and Push steps. The build and push steps may work with either Kaniko or BuildX plugins under the hood, and the plugin used will impact the environment variables passed to the steps.
Before diving into the supported workflows, let’s quickly review the differences between Kaniko and BuildX, and how Harness chooses between them.
Build Tools Used by Harness
Harness CI uses two tools to build container images, depending on your infrastructure and step configuration: Kaniko and BuildX.
Kaniko
Kaniko builds images from a Dockerfile inside a container/Kubernetes pod.
Executes Dockerfile instructions without needing a Docker daemon.
Commonly used in Kubernetes environments.
Does not require privileged mode.
Requires root access inside the container (If your stage is configured with
runAsNonRoot: true, set Run as User to 0 in the Build and Push step to allow Kaniko to function).
BuildX
BuildX is a Docker CLI plugin that extends Docker’s build capabilities using BuildKit.
Enables Docker Layer Caching (DLC) and multi-platform builds.
Requires a Docker daemon or BuildKit backend (e.g., Docker-in-Docker or containerd)
Used automatically when DLC is enabled or specific feature flags are set.
How Harness Chooses Between BuildX and Kaniko
Harness automatically selects the builder to be used by the Build and Push steps based on your infrastructure type and settings:
Environment
Default Behavior
When BuildX Plugin Is Used
Non-Kubernetes (Cloud, VMs, etc)
Uses Docker CLI (docker build, docker push)
✅ BuildX is used when Docker Layer Caching (DLC) is enabled, BuildX plugin is used
Kubernetes
Uses Kaniko
✅ BuildX is used when DLC is enabled or CI_USE_BUILDX_ON_K8 feature flag is enabled
To enable the CI_USE_BUILDX_ON_K8 feature flag, contact Harness Support
Kaniko Root Mode Recommendations
When using Kaniko on Kubernetes infrastructure, we recommend running Kaniko in root mode only when required. Kaniko can run as non-root in many cases, but requires root access when your Dockerfile performs privileged operations. You can optimize security by:
Running the pipeline stage as non-root (
runAsNonRoot: true) to comply with cluster security policiesRunning only the Kaniko Build and Push step in root mode (
runAsUser: 0) when your Dockerfile requires it
When Root Mode is Required
Kaniko needs root mode specifically when the Dockerfile performs privileged operations that a non-root user cannot execute:
Installing system packages using package managers (
apt,yum,apk, etc.)Modifying or writing to root-owned directories in the base image that have restrictive permissions
Performing UID/GID operations such as
useradd,groupadd, orchown
Buildah
You can also use Buildah via plugins/buildah-docker.
Buildah allows building container images without requiring a Docker daemon.
Supports both Dockerfile-based and script-based image builds.
Can run in rootless mode, making it a secure choice for unprivileged environments.
Commonly used when enhanced isolation or compliance with Open Container Initiative (OCI) standards is needed.
May require additional configuration depending on the base image and permissions.
If your Kubernetes cluster build infrastructure is configured to run as non-root, you can use the Buildah plugin.
Using Environment Variables to Control Build and Push Behavior
Harness CI supports flexible Docker workflows across different environments and use cases — from building-only to scanning and pushing images to multiple registries. These workflows are powered by a set of environment variables that modify the behavior of our native Build and Push steps.
Supported Workflows at a Glance
Workflow
Supported Builders
Use Case
Build-only
Kaniko, BuildX
Build, scan, and store image without pushing
Push-only
Kaniko, BuildX
Push pre-built or scanned image
Build once, push many
BuildX only
Push same image to multiple registries
Build, scan, push
Kaniko, BuildX
Secure builds with vulnerability scanning
Each workflow is controlled by specific environment variables, depending on the builder used (Kaniko or BuildX). The table below outlines the key variables and how they apply.
Supported Environment Variables
Environment Variable
Description
Supported builder
PLUGIN_NO_PUSH
Skip pushing the image after it is built. Set as true for build-only mode.
BuildX + Kaniko
PLUGIN_PUSH_ONLY
Set as true for pushing an image without rebuilding it.
BuildX + Kaniko
PLUGIN_BUILDX_LOAD
The resulting image is loaded into local Docker image store to make it available in subsequent steps
BuildX only
PLUGIN_TAR_PATH
Used when in build-only mode to provide a path for in which to save the tarball image (if exporting as a .tar file).
BuildX + Kaniko
PLUGIN_SOURCE_TAR_PATH
Used when in push-only mode, to provide a Path to a local tarball image to be pushed.
BuildX + Kaniko
PLUGIN_SOURCE_IMAGE
Used when in push-only mode, in case you need to retag and push.
BuildX
PLUGIN_DAEMON_OFF
Runs BuildX in daemonless mode, commonly used for Kubernetes builds in conjunction with a docker daemon provisioned in a Background step (DinD).
BuildX only
The following sections provide step-by-step examples for the following scenarios:
Build-only: Build an image without pushing it.
Push-only: Push a pre-built image.
Build once, push to multiple registries: Push the same image to several registries in parallel.
Build, scan, and push: Secure your image before pushing it.
Build-only
In build-only mode, you build a Docker image locally without pushing it to a registry. The resulting image can be either loaded into the local Docker image store (BuildX) or saved as a tarball file (both BuildX and Kaniko), which can then be scanned or reused in later steps. This is useful for workflows that require image validation or vulnerability scanning before pushing.
Following are reference snippets in build-only mode using BuildX or Kaniko:
Ensure Docker Layer Caching (DLC) is enabled, for BuildX to be used.
Use the following environment variables:
PLUGIN_NO_PUSH:true- skips pushing the image.PLUGIN_BUILDX_LOAD:true- loads the image into local Docker Daemon.PLUGIN_TAR_PATH: Path for saving the image as tar archive (Optional) (e.g. /folder/image.tar) - the image will be saved with the name provided. If a folder isn't provided, the image will be saved in the current working directory
To use BuildX on Kubernetes ensure either Docker Layer Caching (DLC) is enabled or the
CI_USE_BUILDX_ON_K8feature flag is enabled.Use a background step with a Docker container(DinD).
Add
/var/runto your stage's shared paths (under Stage > Overview > Shared Paths, as shown in the snippet below).Use the following environment variables:
PLUGIN_NO_PUSH:true- skips pushing the image.PLUGIN_TAR_PATH: Path for saving the image as tar archive (e.g. /folder/image.tar) - the image will be saved with the name provided. If a folder isn't provided, the image will be saved in the current working directoryPLUGIN_DAEMON_OFF:true- for daemonless BuildX mode - needed for leveraging DinD background service.PLUGIN_BUILDX_LOAD:true- required when building an image (the resulting image is loaded into local Docker image store to make it available in subsequent steps)
sharedPaths mounts the same host path across all steps in the stage so that one step (like the DinD daemon) can write to a path (e.g., Docker socket), and another step (like BuildAndPushDockerRegistry) can read/use it.
Following is a reference build-only YAML snippet using Kaniko on Kubernetes
Use the following environment variables:
PLUGIN_NO_PUSH:true(skips pushing the image)PLUGIN_TAR_PATH: Path for saving the image as tar archive (Required). (e.g. /folder/image.tar)
Following is a reference build-only YAML snippet using Buildah on Kubernetes
Use the following environment variables:
dry_run:true(skips pushing the image)tar_path: Path for saving the image as tar archive (Required). (e.g. /folder/image.tar)
KUBERNETES REQUIREMENT
When running in Kubernetes, Buildah requires privileged mode.
The examples above demonstrate build-only mode with the native Build and Push to Docker step. You can apply this to other registries using the appropriate native build and push steps in the Harness CI step palette with the same environment variables.
Push-only
This mode pushes a pre-built Docker image without building it again. Ideally used after scanning or validation.
Following are reference snippets in push-only mode using BuildX on Harness Cloud and Kubernetes
Ensure Docker Layer Caching (DLC) is enabled, for BuildX to be used.
Use these environment variables:
PLUGIN_PUSH_ONLY:true(skips building)PLUGIN_SOURCE_TAR_PATH: Path to your previously built image (e.g. /folder/image.tar) - if you built a tarball image
The examples above demonstrate push-only mode to Dockerhub on Harness Cloud. You can apply the same to other registries using the appropriate native build and push steps in the Harness CI step palette with the same environment variables. When you build a traditional OCI image, the step uses properties like tags, registry and repo to properly push the image built.
Ensure either Docker Layer Caching (DLC) is enabled or the
CI_USE_BUILDX_ON_K8feature flag is enabled, for BuildX to be used.Use a background step with a Docker container(DinD).
Add
/var/runto your stage's shared paths (under Stage > Overview > Shared Paths, as shown in the snippet below).Set these environment variables:
PLUGIN_PUSH_ONLY:true(skips building)PLUGIN_SOURCE_TAR_PATH: Path to your previously built image (Optional). (e.g. /folder/image.tar) - if you built a tarball imagePLUGIN_DAEMON_OFF:true(for daemonless BuildX mode)
This works when: A previous step (in the stage) built the image and cached it in a shared volume or DinD. The image must be available in the Docker daemon started in the Background_1 step (via DinD).
The following is a reference push-only YAML snippet using Kaniko on Kubernetes
Use these environment variables:
PLUGIN_PUSH_ONLY:true(skips building)PLUGIN_SOURCE_TAR_PATH: Path to your previously built image (e.g. /folder/image.tar)
Following is a reference build-only YAML snippet using Buildah on Kubernetes
Use the following environment variables:
push_only:true(skips building)source_tar_path: Path for saving the image as tar archive (Required). (e.g. /folder/image.tar)
KUBERNETES REQUIREMENT
When running in Kubernetes, Buildah requires privileged mode.
Build Once and Push to Multiple Registries in Parallel
This mode builds an image once and pushes it simultaneously to multiple registries(ECR, GAR, ACR and Docker) in parallel. Once an image is built, the native build and push steps expect a distinct tag for each of the images being pushed. Harness retags the image before pushing it to the registry.
Let us look at how this workflow is supported in Harness Cloud and Kubernetes
Build an image in a native Build and Push step with the following environment variables:
PLUGIN_NO_PUSH:true(Skips pushing the image during build)
Create separate push steps with:
PLUGIN_PUSH_ONLY:true(Pushes without rebuilding)PLUGIN_SOURCE_IMAGE:myorg/myapp:v.<+pipeline.sequenceId>- Source Image with tag - will be used to retag when image is built once and pushed to multiple repositories
Build an image in a native Build and Push step with the following environment variables:
PLUGIN_NO_PUSH:true(Skips pushing the image during build)PLUGIN_BUILDX_LOAD:true(Required) The resulting image is loaded into local Docker image store to make it available in subsequent steps.
Create separate push steps with:
PLUGIN_PUSH_ONLY:true(Pushes without rebuilding)PLUGIN_SOURCE_IMAGE:myorg/myapp:v.<+pipeline.sequenceId>- Source Image with tag - will be used to retag when image is built once and pushed to multiple repositoriesPLUGIN_DAEMON_OFF:true(BuildX in daemonless mode)
Summarizing the snippet above:
DinD runs in background and exposes /var/run/docker.sock
Build step creates an image (without pushing) and tags it as
v.<+pipeline.sequenceId>Parallel steps push the same built image to:
Docker Registry
Amazon ECR -
only push_to_ecrstep usesPLUGIN_SOURCE_IMAGEfor retag, as it was build by a build ans push step of a different Type.
Build, Scan, and Push (using Kaniko on K8S)
Following is a complete workflow to build, scan for vulnerabilities and then push the image. This example is using Kaniko, but the same can be achieved using BuildX
Setup
Build an image in a native Build and Push step with the following environment variables:
PLUGIN_NO_PUSH:true(skip pushing the image during build)PLUGIN_TAR_PATH: Path for saving the image (e.g. /folder/image.tar)
Push the image with the native Build and Push step with the following environment variables:
PLUGIN_PUSH_ONLY:true(Pushes without rebuilding)PLUGIN_SOURCE_TAR_PATH: Path to your previously built image (e.g. /folder/image.tar)
Refer to the following pipeline example:
This approach separates building, scanning and pushing into distinct steps, improving security and pipeline flexibility. To learn more, refer to the plugin operation modes
Last updated
Was this helpful?