From 0a7f3b03be5c33b8383cf865afffd11b32d8a2c4 Mon Sep 17 00:00:00 2001 From: Kevin Su Date: Fri, 9 Feb 2024 12:52:16 -0800 Subject: [PATCH] nit Signed-off-by: Kevin Su --- .../flyte_project_components.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/getting_started_with_workflow_development/flyte_project_components.md b/docs/getting_started_with_workflow_development/flyte_project_components.md index 75560ae9fb..8ce59344c3 100644 --- a/docs/getting_started_with_workflow_development/flyte_project_components.md +++ b/docs/getting_started_with_workflow_development/flyte_project_components.md @@ -56,11 +56,11 @@ The workflow code file in the basic template includes an optional ImageSpec conf ```python basic_image = ImageSpec( - name="flytekit", # default docker image name - base_image="ghcr.io/flyteorg/flytekit:py3.11-1.10.2", # the base image that flytekit will use to build your image - packages=["pandas"], # python packages to install + name="flytekit", # default docker image name. + base_image="ghcr.io/flyteorg/flytekit:py3.11-1.10.2", # the base image that flytekit will use to build your image. + packages=["pandas"], # python packages to install. registry="ghcr.io/unionai-oss", # the registry your image will be pushed to. - python_version="3.11" # Optional if python is installed in the base image + python_version="3.11" # Optional if python is installed in the base image. ) ```