Skip to content

Commit 530db78

Browse files
committed
fixing images
1 parent df4ea24 commit 530db78

File tree

31 files changed

+132
-111
lines changed

31 files changed

+132
-111
lines changed

examples/tutorials/10_async/00_base/000_hello_acp/Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,16 +23,16 @@ RUN uv pip install --system --upgrade pip setuptools wheel
2323
ENV UV_HTTP_TIMEOUT=1000
2424

2525
# Copy pyproject.toml and README.md to install dependencies
26-
COPY 10_agentic/00_base/000_hello_acp/pyproject.toml /app/000_hello_acp/pyproject.toml
27-
COPY 10_agentic/00_base/000_hello_acp/README.md /app/000_hello_acp/README.md
26+
COPY 10_async/00_base/000_hello_acp/pyproject.toml /app/000_hello_acp/pyproject.toml
27+
COPY 10_async/00_base/000_hello_acp/README.md /app/000_hello_acp/README.md
2828

2929
WORKDIR /app/000_hello_acp
3030

3131
# Copy the project code
32-
COPY 10_agentic/00_base/000_hello_acp/project /app/000_hello_acp/project
32+
COPY 10_async/00_base/000_hello_acp/project /app/000_hello_acp/project
3333

3434
# Copy the test files
35-
COPY 10_agentic/00_base/000_hello_acp/tests /app/000_hello_acp/tests
35+
COPY 10_async/00_base/000_hello_acp/tests /app/000_hello_acp/tests
3636

3737
# Copy shared test utilities
3838
COPY test_utils /app/test_utils

examples/tutorials/10_async/00_base/000_hello_acp/manifest.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,18 +22,18 @@ build:
2222
# - Your agent's directory (your custom agent code)
2323
# These paths are collected and sent to the Docker daemon for building
2424
include_paths:
25-
- 10_agentic/00_base/000_hello_acp
25+
- 10_async/00_base/000_hello_acp
2626
- test_utils
2727

2828
# Path to your agent's Dockerfile
2929
# This defines how your agent's image is built from the context
3030
# Relative to the root directory
31-
dockerfile: 10_agentic/00_base/000_hello_acp/Dockerfile
31+
dockerfile: 10_async/00_base/000_hello_acp/Dockerfile
3232

3333
# Path to your agent's .dockerignore
3434
# Filters unnecessary files from the build context
3535
# Helps keep build context small and builds fast
36-
dockerignore: 10_agentic/00_base/000_hello_acp/.dockerignore
36+
dockerignore: 10_async/00_base/000_hello_acp/.dockerignore
3737

3838

3939
# Local Development Configuration

examples/tutorials/10_async/00_base/010_multiturn/Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,15 @@ RUN uv pip install --system --upgrade pip setuptools wheel
2323
ENV UV_HTTP_TIMEOUT=1000
2424

2525
# Copy pyproject.toml and README.md to install dependencies
26-
COPY 10_agentic/00_base/010_multiturn/pyproject.toml /app/010_multiturn/pyproject.toml
27-
COPY 10_agentic/00_base/010_multiturn/README.md /app/010_multiturn/README.md
26+
COPY 10_async/00_base/010_multiturn/pyproject.toml /app/010_multiturn/pyproject.toml
27+
COPY 10_async/00_base/010_multiturn/README.md /app/010_multiturn/README.md
2828

2929
WORKDIR /app/010_multiturn
3030

31-
COPY 10_agentic/00_base/010_multiturn/project /app/010_multiturn/project
31+
COPY 10_async/00_base/010_multiturn/project /app/010_multiturn/project
3232

3333
# Copy the test files
34-
COPY 10_agentic/00_base/010_multiturn/tests /app/010_multiturn/tests
34+
COPY 10_async/00_base/010_multiturn/tests /app/010_multiturn/tests
3535

3636
# Copy shared test utilities
3737
COPY test_utils /app/test_utils

examples/tutorials/10_async/00_base/010_multiturn/manifest.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,18 +22,18 @@ build:
2222
# - Your agent's directory (your custom agent code)
2323
# These paths are collected and sent to the Docker daemon for building
2424
include_paths:
25-
- 10_agentic/00_base/010_multiturn
25+
- 10_async/00_base/010_multiturn
2626
- test_utils
2727

2828
# Path to your agent's Dockerfile
2929
# This defines how your agent's image is built from the context
3030
# Relative to the root directory
31-
dockerfile: 10_agentic/00_base/010_multiturn/Dockerfile
31+
dockerfile: 10_async/00_base/010_multiturn/Dockerfile
3232

3333
# Path to your agent's .dockerignore
3434
# Filters unnecessary files from the build context
3535
# Helps keep build context small and builds fast
36-
dockerignore: 10_agentic/00_base/010_multiturn/.dockerignore
36+
dockerignore: 10_async/00_base/010_multiturn/.dockerignore
3737

3838

3939
# Local Development Configuration

examples/tutorials/10_async/00_base/020_streaming/Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,16 +23,16 @@ RUN uv pip install --system --upgrade pip setuptools wheel
2323
ENV UV_HTTP_TIMEOUT=1000
2424

2525
# Copy pyproject.toml and README.md to install dependencies
26-
COPY 10_agentic/00_base/020_streaming/pyproject.toml /app/020_streaming/pyproject.toml
27-
COPY 10_agentic/00_base/020_streaming/README.md /app/020_streaming/README.md
26+
COPY 10_async/00_base/020_streaming/pyproject.toml /app/020_streaming/pyproject.toml
27+
COPY 10_async/00_base/020_streaming/README.md /app/020_streaming/README.md
2828

2929
WORKDIR /app/020_streaming
3030

3131
# Copy the project code
32-
COPY 10_agentic/00_base/020_streaming/project /app/020_streaming/project
32+
COPY 10_async/00_base/020_streaming/project /app/020_streaming/project
3333

3434
# Copy the test files
35-
COPY 10_agentic/00_base/020_streaming/tests /app/020_streaming/tests
35+
COPY 10_async/00_base/020_streaming/tests /app/020_streaming/tests
3636

3737
# Copy shared test utilities
3838
COPY test_utils /app/test_utils

examples/tutorials/10_async/00_base/020_streaming/manifest.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,18 +22,18 @@ build:
2222
# - Your agent's directory (your custom agent code)
2323
# These paths are collected and sent to the Docker daemon for building
2424
include_paths:
25-
- 10_agentic/00_base/020_streaming
25+
- 10_async/00_base/020_streaming
2626
- test_utils
2727

2828
# Path to your agent's Dockerfile
2929
# This defines how your agent's image is built from the context
3030
# Relative to the root directory
31-
dockerfile: 10_agentic/00_base/020_streaming/Dockerfile
31+
dockerfile: 10_async/00_base/020_streaming/Dockerfile
3232

3333
# Path to your agent's .dockerignore
3434
# Filters unnecessary files from the build context
3535
# Helps keep build context small and builds fast
36-
dockerignore: 10_agentic/00_base/020_streaming/.dockerignore
36+
dockerignore: 10_async/00_base/020_streaming/.dockerignore
3737

3838

3939
# Local Development Configuration

examples/tutorials/10_async/00_base/030_tracing/Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,16 +23,16 @@ RUN uv pip install --system --upgrade pip setuptools wheel
2323
ENV UV_HTTP_TIMEOUT=1000
2424

2525
# Copy pyproject.toml and README.md to install dependencies
26-
COPY 10_agentic/00_base/030_tracing/pyproject.toml /app/030_tracing/pyproject.toml
27-
COPY 10_agentic/00_base/030_tracing/README.md /app/030_tracing/README.md
26+
COPY 10_async/00_base/030_tracing/pyproject.toml /app/030_tracing/pyproject.toml
27+
COPY 10_async/00_base/030_tracing/README.md /app/030_tracing/README.md
2828

2929
WORKDIR /app/030_tracing
3030

3131
# Copy the project code
32-
COPY 10_agentic/00_base/030_tracing/project /app/030_tracing/project
32+
COPY 10_async/00_base/030_tracing/project /app/030_tracing/project
3333

3434
# Copy the test files
35-
COPY 10_agentic/00_base/030_tracing/tests /app/030_tracing/tests
35+
COPY 10_async/00_base/030_tracing/tests /app/030_tracing/tests
3636

3737
# Copy shared test utilities
3838
COPY test_utils /app/test_utils

examples/tutorials/10_async/00_base/030_tracing/manifest.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,18 +22,18 @@ build:
2222
# - Your agent's directory (your custom agent code)
2323
# These paths are collected and sent to the Docker daemon for building
2424
include_paths:
25-
- 10_agentic/00_base/030_tracing
25+
- 10_async/00_base/030_tracing
2626
- test_utils
2727

2828
# Path to your agent's Dockerfile
2929
# This defines how your agent's image is built from the context
3030
# Relative to the root directory
31-
dockerfile: 10_agentic/00_base/030_tracing/Dockerfile
31+
dockerfile: 10_async/00_base/030_tracing/Dockerfile
3232

3333
# Path to your agent's .dockerignore
3434
# Filters unnecessary files from the build context
3535
# Helps keep build context small and builds fast
36-
dockerignore: 10_agentic/00_base/030_tracing/.dockerignore
36+
dockerignore: 10_async/00_base/030_tracing/.dockerignore
3737

3838

3939
# Local Development Configuration

examples/tutorials/10_async/00_base/040_other_sdks/Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,16 +23,16 @@ RUN uv pip install --system --upgrade pip setuptools wheel
2323
ENV UV_HTTP_TIMEOUT=1000
2424

2525
# Copy pyproject.toml and README.md to install dependencies
26-
COPY 10_agentic/00_base/040_other_sdks/pyproject.toml /app/040_other_sdks/pyproject.toml
27-
COPY 10_agentic/00_base/040_other_sdks/README.md /app/040_other_sdks/README.md
26+
COPY 10_async/00_base/040_other_sdks/pyproject.toml /app/040_other_sdks/pyproject.toml
27+
COPY 10_async/00_base/040_other_sdks/README.md /app/040_other_sdks/README.md
2828

2929
WORKDIR /app/040_other_sdks
3030

3131
# Copy the project code
32-
COPY 10_agentic/00_base/040_other_sdks/project /app/040_other_sdks/project
32+
COPY 10_async/00_base/040_other_sdks/project /app/040_other_sdks/project
3333

3434
# Copy the test files
35-
COPY 10_agentic/00_base/040_other_sdks/tests /app/040_other_sdks/tests
35+
COPY 10_async/00_base/040_other_sdks/tests /app/040_other_sdks/tests
3636

3737
# Copy shared test utilities
3838
COPY test_utils /app/test_utils

examples/tutorials/10_async/00_base/040_other_sdks/manifest.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,18 +22,18 @@ build:
2222
# - Your agent's directory (your custom agent code)
2323
# These paths are collected and sent to the Docker daemon for building
2424
include_paths:
25-
- 10_agentic/00_base/040_other_sdks
25+
- 10_async/00_base/040_other_sdks
2626
- test_utils
2727

2828
# Path to your agent's Dockerfile
2929
# This defines how your agent's image is built from the context
3030
# Relative to the root directory
31-
dockerfile: 10_agentic/00_base/040_other_sdks/Dockerfile
31+
dockerfile: 10_async/00_base/040_other_sdks/Dockerfile
3232

3333
# Path to your agent's .dockerignore
3434
# Filters unnecessary files from the build context
3535
# Helps keep build context small and builds fast
36-
dockerignore: 10_agentic/00_base/040_other_sdks/.dockerignore
36+
dockerignore: 10_async/00_base/040_other_sdks/.dockerignore
3737

3838

3939
# Local Development Configuration

0 commit comments

Comments
 (0)