Skip to content

Commit e3365e5

Browse files
author
Charlotte Zhuang
committed
kind of fix dockerfile
1 parent c1f464d commit e3365e5

File tree

1 file changed

+6
-4
lines changed
  • examples/tutorials/10_agentic/10_temporal/011_custom_agent_chat

1 file changed

+6
-4
lines changed

examples/tutorials/10_agentic/10_temporal/011_custom_agent_chat/Dockerfile

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,16 +28,18 @@ RUN uv pip install --system --upgrade pip setuptools wheel
2828

2929
ENV UV_HTTP_TIMEOUT=1000
3030

31-
# Copy just the requirements file to optimize caching
32-
COPY 000_hello_acp/requirements.txt /app/requirements.txt
31+
# Copy requirements
32+
COPY pyproject.toml /app/pyproject.toml
33+
COPY uv.lock /app/uv.lock
34+
COPY README.md /app/README.md
3335

3436
WORKDIR /app/
3537

3638
# Install the required Python packages
37-
RUN uv pip install --system -r requirements.txt
39+
RUN uv sync
3840

3941
# Copy the project code
40-
COPY 000_hello_acp/project /app/project
42+
COPY project /app/project
4143

4244
WORKDIR /app/project
4345

0 commit comments

Comments
 (0)