Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion patterns/claude-agent-sdk-multi-agent/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 && \
Expand Down
2 changes: 1 addition & 1 deletion patterns/claude-agent-sdk-single-agent/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 && \
Expand Down
2 changes: 1 addition & 1 deletion patterns/langgraph-single-agent/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 && \
Expand Down
2 changes: 1 addition & 1 deletion patterns/strands-single-agent/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 && \
Expand Down
Loading