This page describes how to create a derivative container based on one of the standard available Deep Learning Containers images.
To complete the steps in this guide, you can use either Cloud Shell or any environment where the Google Cloud CLI is installed.
Before you begin
Before you begin, make sure you have completed the following steps.
Complete the set up steps in the Before you begin section of Getting started with a local deep learning container.
Make sure that billing is enabled for your Google Cloud project.
Enable the Artifact Registry API.
The Process
To create a derivative container, you'll use a process similar to this:
Create the initial Dockerfile and run modification commands.
To start, you create a Deep Learning Containers container using one of the available image types. Then use conda, pip, or Jupyter commands to modify the container image for your needs.
Build and push the container image.
Build the container image, and then push it to somewhere that is accessible to your Compute Engine service account.
Create the initial Dockerfile and run modification commands
Use the following commands to select a Deep Learning Containers image type and make a small change to the container image. This example shows how to start with a TensorFlow image and updates the image with the latest version of TensorFlow. Write the following commands to the Dockerfile:
FROM us-docker.pkg.dev/deeplearning-platform-release/gcr.io/tf-gpu:latest # Uninstall the container's TensorFlow version and install the latest version RUN pip install --upgrade pip && \ pip uninstall -y tensorflow && \ pip install tensorflow
Build and push the container image
Use the following commands to build and push the container image to Artifact Registry, where it can be accessed by your Google Compute Engine service account.
Create and authenticate the repository:
export PROJECT=$(gcloud config list project --format "value(core.project)") gcloud artifacts repositories create REPOSITORY_NAME \ --repository-format=docker \ --location=LOCATION gcloud auth configure-docker LOCATION-docker.pkg.dev
Replace the following:
LOCATION
: The regional or multi-regional location of the repository, for exampleus
. To view a list of supported locations, run the commandgcloud artifacts locations list
.REPOSITORY_NAME
: The name of the repository that you want to create, for examplemy-tf-repo
.
Then, build and push the image:
export IMAGE_NAME="LOCATION-docker.pkg.dev/${PROJECT}/REPOSITORY_NAME/tf-custom:v1" docker build . -t $IMAGE_NAME docker push $IMAGE_NAME