Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f2460ed commit 8a9e77eCopy full SHA for 8a9e77e
2 files changed
a2a/Dockerfile
@@ -8,7 +8,8 @@ WORKDIR /app
8
COPY pyproject.toml uv.lock ./
9
RUN --mount=type=cache,target=/root/.cache/uv \
10
UV_COMPILE_BYTECODE=1 UV_LINK_MODE=copy \
11
- uv pip install --system .
+ uv pip install --system . && \
12
+ rm -fr build dist *.egg-info
13
COPY main.py src ./
14
RUN python -m compileall -q .
15
adk/Dockerfile
@@ -9,7 +9,8 @@ WORKDIR /app
# Copy application code
COPY agents/ ./agents/
16
0 commit comments