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
FROM us-central1-docker.pkg.dev/tpu-pytorch-releases/docker/xla:nightly_3.10_tpuvm_20250321
2
+
3
+
ARG USE_LOCAL_WHEEL=false
4
+
5
+
# Install system dependencies
6
+
RUN apt-get update && apt-get install -y curl gnupg
7
+
8
+
# Add the Google Cloud SDK package repository
9
+
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
10
+
RUN curl https://packages.cloud.google.com/apt/doc/apt-key.gpg | apt-key --keyring /usr/share/keyrings/cloud.google.gpg add -
11
+
12
+
# Add the Cloud Storage FUSE distribution URL as a package source
13
+
RUN echo "deb https://packages.cloud.google.com/apt gcsfuse-bullseye main" | tee /etc/apt/sources.list.d/gcsfuse.list
14
+
RUN curl https://packages.cloud.google.com/apt/doc/apt-key.gpg | apt-key add -
0 commit comments