From 502c54f1a14052f18ad497ac083dcb346f6e238f Mon Sep 17 00:00:00 2001 From: David <9059044+Tansito@users.noreply.github.com> Date: Tue, 7 Jan 2025 11:26:21 -0500 Subject: [PATCH] fix a typo in the name of the function (#1564) --- docs/deployment/example_custom_image_function.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/deployment/example_custom_image_function.rst b/docs/deployment/example_custom_image_function.rst index 81401fa12..7a059e11a 100644 --- a/docs/deployment/example_custom_image_function.rst +++ b/docs/deployment/example_custom_image_function.rst @@ -68,7 +68,7 @@ Build container image .. code-block:: :caption: Docker build - docker build -t local-provider-function . + docker build -t test-local-provider-function . Prepare your local environment @@ -78,7 +78,7 @@ Prepare your local environment services: ray-head: container_name: ray-head - image: local-provider-function:latest + image: test-local-provider-function:latest Run it @@ -122,7 +122,7 @@ Run serverless function_with_custom_image = QiskitFunction( title="custom-image-function", - image=local-provider-function:latest, + image=test-local-provider-function:latest, provider=os.environ.get("PROVIDER_ID", "mockprovider"), description=help )