Cloud Build icon with the test “Build a Container Image using Cloud Build”
Build a Docker Container Image using Cloud Build

Get started with Cloud Build

This five minute tutorial will guide you through creating a container image using Cloud Build, Google’s tool for build, test, and deployment automation workloads.

David Sugden
6 min readOct 10, 2021

--

Join me for a brief introduction to Google Cloud Build, as we walk through writing our first build pipeline using Google’s CI/CD platform. In the next few minutes, we shall walk through setting up and integrating a Cloud Source Repository with Cloud Build and create a job that builds and pushes a container image to Artifact Registry.

Services used in this tutorial:

Create a Docker repository in Artifact Registry

Our initial step is be to create a repository in Artifact Registry to hold our container image. Artifact Registry can manage multiple repository formats, such as maven, npm, and in our case docker.

Type the command into a Cloud Shell session as shown below.

gcloud artifacts repositories \
create my-docker-repo \
--repository-format=docker \
--location=us-central1 \
--description="Docker repository"

--

--