We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c1f464d commit e3365e5Copy full SHA for e3365e5
examples/tutorials/10_agentic/10_temporal/011_custom_agent_chat/Dockerfile
@@ -28,16 +28,18 @@ RUN uv pip install --system --upgrade pip setuptools wheel
28
29
ENV UV_HTTP_TIMEOUT=1000
30
31
-# Copy just the requirements file to optimize caching
32
-COPY 000_hello_acp/requirements.txt /app/requirements.txt
+# Copy requirements
+COPY pyproject.toml /app/pyproject.toml
33
+COPY uv.lock /app/uv.lock
34
+COPY README.md /app/README.md
35
36
WORKDIR /app/
37
38
# Install the required Python packages
-RUN uv pip install --system -r requirements.txt
39
+RUN uv sync
40
41
# Copy the project code
-COPY 000_hello_acp/project /app/project
42
+COPY project /app/project
43
44
WORKDIR /app/project
45
0 commit comments