From d67fbdc3c497b5897c1b56ce0cce62c8ab7d3028 Mon Sep 17 00:00:00 2001 From: dmitry-bychkov <53076075+iamdbychkov@users.noreply.github.com> Date: Sat, 18 Apr 2026 13:14:23 +0300 Subject: [PATCH] Update Dockerfile code snippet for "Using the official Docker image" tab The code snippet for Dockerfile under the "Using the official Docker images" contains a comment which says that this Docker file uses DHI image, which is incorrect. --- content/guides/python/containerize.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/content/guides/python/containerize.md b/content/guides/python/containerize.md index 7bbfb3df1cfb..dc7dfc158e64 100644 --- a/content/guides/python/containerize.md +++ b/content/guides/python/containerize.md @@ -146,8 +146,7 @@ Create a file named `Dockerfile` with the following contents. # Want to help us make this template better? Share your feedback here: https://forms.gle/ybq9Krt8jtBL3iCk7 -# This Dockerfile uses Docker Hardened Images (DHI) for enhanced security. -# For more information, see https://docs.docker.com/dhi/ +# This Dockerfile uses Python Docker Official Image ARG PYTHON_VERSION=3.12 FROM python:${PYTHON_VERSION}-slim