diff --git a/patterns/claude-agent-sdk-multi-agent/Dockerfile b/patterns/claude-agent-sdk-multi-agent/Dockerfile index 15cb81f5..eb9febb4 100644 --- a/patterns/claude-agent-sdk-multi-agent/Dockerfile +++ b/patterns/claude-agent-sdk-multi-agent/Dockerfile @@ -30,7 +30,7 @@ COPY tools/ tools/ # Copy and install agent-specific requirements COPY patterns/claude-agent-sdk-multi-agent/requirements.txt requirements.txt RUN uv pip install --no-cache -r requirements.txt && \ - uv pip install --no-cache aws-opentelemetry-distro==0.10.1 + uv pip install --no-cache aws-opentelemetry-distro==0.16.0 # Install FAST package with only core dependencies RUN uv pip install --no-cache -e . --no-deps && \ diff --git a/patterns/claude-agent-sdk-single-agent/Dockerfile b/patterns/claude-agent-sdk-single-agent/Dockerfile index 876411d6..01034c7d 100644 --- a/patterns/claude-agent-sdk-single-agent/Dockerfile +++ b/patterns/claude-agent-sdk-single-agent/Dockerfile @@ -30,7 +30,7 @@ COPY tools/ tools/ # Copy and install agent-specific requirements COPY patterns/claude-agent-sdk-single-agent/requirements.txt requirements.txt RUN uv pip install --no-cache -r requirements.txt && \ - uv pip install --no-cache aws-opentelemetry-distro==0.10.1 + uv pip install --no-cache aws-opentelemetry-distro==0.16.0 # Install FAST package with only core dependencies RUN uv pip install --no-cache -e . --no-deps && \ diff --git a/patterns/langgraph-single-agent/Dockerfile b/patterns/langgraph-single-agent/Dockerfile index efa03f3b..3f723b76 100644 --- a/patterns/langgraph-single-agent/Dockerfile +++ b/patterns/langgraph-single-agent/Dockerfile @@ -19,7 +19,7 @@ COPY gateway/ gateway/ # Copy and install agent-specific requirements first COPY patterns/langgraph-single-agent/requirements.txt requirements.txt RUN uv pip install --no-cache -r requirements.txt && \ - uv pip install --no-cache aws-opentelemetry-distro==0.10.1 + uv pip install --no-cache aws-opentelemetry-distro==0.16.0 # Install FAST package with only core dependencies (no dev/agent optional deps) RUN uv pip install --no-cache -e . --no-deps && \ diff --git a/patterns/strands-single-agent/Dockerfile b/patterns/strands-single-agent/Dockerfile index 2a598e03..0fe3b704 100644 --- a/patterns/strands-single-agent/Dockerfile +++ b/patterns/strands-single-agent/Dockerfile @@ -20,7 +20,7 @@ COPY tools/ tools/ # Copy and install agent-specific requirements first COPY patterns/strands-single-agent/requirements.txt requirements.txt RUN uv pip install --no-cache -r requirements.txt && \ - uv pip install --no-cache aws-opentelemetry-distro==0.10.1 + uv pip install --no-cache aws-opentelemetry-distro==0.16.0 # Install FAST package with only core dependencies (no dev/agent optional deps) RUN uv pip install --no-cache -e . --no-deps && \