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

Member-only story

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"

Alternatively if you are using the console, head over to https://console.cloud.google.com/artifacts and hit “Create Repository”.

Screenshot of the Create Repository screen in Artifact Registry
Create a Docker repository in Artifact Registry

And that’s all you need to do — repository created!

Write our sample application

In Cloud Shell or using the Cloud Editor make yourself a new empty working directory and create two files. You can also follow along locally if you have gcloud sdk installed.

The first file will be called hello.sh and should be a simple script:

#!/bin/sh 
echo "Hello, world!"

You will want to ensure that the script is executable chmod +x hello.sh

Create an account to read the full story.

The author made this story available to Medium members only.
If you’re new to Medium, create a new account to read this story on us.

Or, continue in mobile web

Already have an account? Sign in

David Sugden
David Sugden

No responses yet

Write a response