From 8a13cdf327f6b3f182dfadcf17b03311239edcf5 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Jens=20Pl=C3=BCddemann?= <jens.plueddemann@novatec-gmbh.de>
Date: Mon, 15 Apr 2024 20:08:31 +0200
Subject: [PATCH] add python alias

---
 Dockerfile                                                   | 1 +
 tutorial/content/labs/instrumentation/manual/traces/index.md | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/Dockerfile b/Dockerfile
index 1c36361..91fd022 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -23,6 +23,7 @@ RUN apt-get -qq update
 RUN apt-get -qq install \
     python3 \
     python3-pip \
+    python-is-python3 \
     docker-ce \
     docker-ce-cli \
     containerd.io \
diff --git a/tutorial/content/labs/instrumentation/manual/traces/index.md b/tutorial/content/labs/instrumentation/manual/traces/index.md
index ac49443..102eb60 100644
--- a/tutorial/content/labs/instrumentation/manual/traces/index.md
+++ b/tutorial/content/labs/instrumentation/manual/traces/index.md
@@ -57,7 +57,7 @@ def create_tracing_pipeline() -> BatchSpanProcessor:
     return span_processor
 ```
 
-Inside the `src` directory, create a new file `trace_utils.py`.
+Inside the `src` directory, create a new file `trace_utils.py` with the code displayed above.
 We'll use it to separate tracing-related configuration from the main application.
 At the top of the file, specify the imports as shown above.
 Create a new function `create_tracing_pipeline`.