From e2cccac4d9e1ffea5d8b6280442ffa6fbbc5684a Mon Sep 17 00:00:00 2001 From: Mark Drake <33191761+SharpRake@users.noreply.github.com> Date: Wed, 3 Apr 2024 08:31:04 -0700 Subject: [PATCH] minor update to Python Image README (#2436) * minor update to Python Image README Signed-off-by: Mark Drake * Josh's suggestion Signed-off-by: Mark Drake --------- Signed-off-by: Mark Drake --- images/python/README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/images/python/README.md b/images/python/README.md index 26b2d454df..965d3ede4b 100644 --- a/images/python/README.md +++ b/images/python/README.md @@ -38,6 +38,12 @@ docker pull cgr.dev/chainguard/python:latest docker pull cgr.dev/chainguard/python:latest-dev ``` +Note that in order to access the shell in the `python:latest-dev` image, you'll need to include an `--entrypoint` option, as in the following example. + +```sh +docker run -it --entrypoint /bin/bash chainguard/python:latest-dev +``` + ## Usage The python image can be used directly for simple cases, or with a multi-stage build using python-dev as the build container.