diff --git a/examples/python/Dockerfile b/examples/python/Dockerfile index 9f6430b..9138d5d 100644 --- a/examples/python/Dockerfile +++ b/examples/python/Dockerfile @@ -9,7 +9,7 @@ COPY requirements.txt . # 2. Run `pip freeze > requirements.txt` in the same directory as your app.py file RUN pip install -r requirements.txt -RUN pip install opentelemetry-distro[otlp] +RUN pip install 'opentelemetry-distro[otlp]==0.46b0' RUN opentelemetry-bootstrap -a install COPY app.py . diff --git a/examples/python/run.sh b/examples/python/run.sh index b21a851..0a23439 100755 --- a/examples/python/run.sh +++ b/examples/python/run.sh @@ -14,7 +14,7 @@ source ./venv/bin/activate pip install -r requirements.txt # Step 1: Install the OpenTelemetry SDK -pip install opentelemetry-distro[otlp] +pip install 'opentelemetry-distro[otlp]==0.46b0' opentelemetry-bootstrap -a install # Step 2: Run the application