Skip to content

Commit af9ac74

Browse files
committed
chore: final touches for review
1 parent 69b3261 commit af9ac74

1 file changed

Lines changed: 1 addition & 7 deletions

File tree

src/google/adk/cli/cli_deploy.py

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -71,11 +71,6 @@ def _ensure_agent_engine_dependency(requirements_txt_path: str) -> None:
7171
FROM python:3.11-slim
7272
WORKDIR /app
7373
74-
RUN apt-get update && \
75-
apt-get upgrade -y && \
76-
apt-get install -y git && \
77-
apt -y autoremove
78-
7974
# Create a non-root user
8075
RUN adduser --disabled-password --gecos "" myuser
8176
@@ -92,7 +87,7 @@ def _ensure_agent_engine_dependency(requirements_txt_path: str) -> None:
9287
# Set up environment variables - End
9388
9489
# Install ADK - Start
95-
# RUN pip install google-adk=={adk_version}
90+
RUN pip install google-adk=={adk_version}
9691
# Install ADK - End
9792
9893
# Copy agent - Start
@@ -942,7 +937,6 @@ def to_agent_engine(
942937
tmp_app_name = app_name + '_tmp' + datetime.now().strftime('%Y%m%d_%H%M%S')
943938
temp_folder = temp_folder or tmp_app_name
944939
agent_src_path = os.path.join(parent_folder, temp_folder, 'agents', app_name)
945-
click.echo(f'Staging all files in: {agent_src_path}')
946940
# remove agent_src_path if it exists
947941
if os.path.exists(agent_src_path):
948942
click.echo('Removing existing files')

0 commit comments

Comments
 (0)