Share       In this blog you can learn building a docker image and uploading it to Google Container Registry, deploying a container on Cloud Run from Google Container Registry, and creating a Continues Deployment Pipeline using Build Docker Image and Push it to Google Container Registry Enabling Container Registry API  Login to your GCP web console select the project, search for Google Container Registry API and enable it. Build Docker Image Please install and initialize gcloud cli before following below process, refer to Installing Google Cloud Cli in this blog and set the project that you want to work on using below given command. List all your projects using command gcloud projects list which will return all the projects with project Id, project name and project number. Set the project using the following command gcloud config set project rock-partition-363003 “rock-partition-363003” is my project ID please use your project ID here.   On your terminal go the file path where your Docker file is stored, and use the below command to build your docker Image, if you are new to docker please refer to Step-2 of this blog to learn writing a docker file and this blog to learn top-20 docker commands docker build -t gcr.io/rock-partition-363003/python-application:ver1 . docker build -t gcr.io/<project-ID>/Image-name:tag above […] read more