From 75c9be074c34b89bd74a6eef490e454d2c8ee473 Mon Sep 17 00:00:00 2001 From: Robin Tweedie <70587124+robin-wayve@users.noreply.github.com> Date: Mon, 17 May 2021 14:31:46 +0100 Subject: [PATCH] Correct container_py_toolchain target --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 65d404fdc..494b7e9a0 100644 --- a/README.md +++ b/README.md @@ -1261,7 +1261,7 @@ file at the root of this project. Use of these features require a python toolchain to be registered. `//py_images/image.bzl:deps` and `//py3_images/image.bzl:deps` register a -default python toolchain (`//toolchains/python:container_py_toolchain`) +default python toolchain (`//toolchains:container_py_toolchain`) that defines the path to python tools inside the default container used for these rules. @@ -1269,7 +1269,7 @@ for these rules. If you are using a custom base for `py_image` or `py3_image` builds that has python tools installed in a different location to those defined in -`//toolchains/python:container_py_toolchain`, you will need to create a +`//toolchains:container_py_toolchain`, you will need to create a toolchain that points to these paths and register it _before_ the call to `py*_images/image.bzl:deps` in your `WORKSPACE`.