Skip to content

Commit ac0ece2

Browse files
committed
Dockerfile: install apitool from google repo
Signed-off-by: Shengqi Chen <[email protected]>
1 parent 870eefd commit ac0ece2

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@ RUN if [ "$(uname -m)" != "x86_64" -a "$(uname -m)" != "i386" ]; then \
1515
fi
1616

1717
# RUN pip3 install --upgrade pip
18-
RUN python3 -m pip install gsutil --break-system-packages
18+
# needs unpublished version of apitools, see: https://github.com/GoogleCloudPlatform/gsutil/issues/1819
19+
RUN python3 -m pip install gsutil https://github.com/google/apitools/archive/refs/tags/v0.5.35.zip --break-system-packages
1920

2021
RUN echo "en_US.UTF-8 UTF-8" > /etc/locale.gen && apt-get install -y locales -qq && locale-gen
2122
ENV LANG=en_US.UTF-8 LANGUAGE=en_US.UTF-8 LC_ALL=en_US.UTF-8 HOME=/tmp

0 commit comments

Comments
 (0)