You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: experimental/jetstream-maxtext-stable-stack/Dockerfile
+10Lines changed: 10 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -64,6 +64,16 @@ RUN apt-get update \
64
64
65
65
RUN python3 -m pip install --upgrade pip
66
66
67
+
# Add the Google Cloud SDK package repository
68
+
RUN echo "deb [signed-by=/usr/share/keyrings/cloud.google.gpg] https://packages.cloud.google.com/apt cloud-sdk main" | tee -a /etc/apt/sources.list.d/google-cloud-sdk.list
69
+
RUN curl https://packages.cloud.google.com/apt/doc/apt-key.gpg | apt-key --keyring /usr/share/keyrings/cloud.google.gpg add -
70
+
71
+
# Install the Google Cloud SDK
72
+
RUN apt-get update && apt-get install -y google-cloud-sdk
0 commit comments