Skip to content

Commit 7b2e78b

Browse files
authored
fix Dockerfile - change the bazel version to 0.28.0 in order to be able to build (waymo-research#145)
1 parent eb0b465 commit 7b2e78b

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

tutorial/cpu-jupyter.Dockerfile

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,10 @@ RUN apt-get update && apt-get install -y \
44
git build-essential wget vim findutils curl \
55
pkg-config zip g++ zlib1g-dev unzip python3 python3-pip
66

7-
RUN echo "deb [arch=amd64] https://storage.googleapis.com/bazel-apt stable jdk1.8" | tee /etc/apt/sources.list.d/bazel.list && \
8-
curl https://bazel.build/bazel-release.pub.gpg | apt-key add - && \
9-
apt-get update && apt-get install -y bazel
7+
RUN apt-get install -y wget
8+
RUN wget https://github.com/bazelbuild/bazel/releases/download/0.28.0/bazel-0.28.0-installer-linux-x86_64.sh
9+
RUN chmod +x bazel-0.28.0-installer-linux-x86_64.sh
10+
RUN bash ./bazel-0.28.0-installer-linux-x86_64.sh
1011

1112
RUN pip3 install jupyter matplotlib jupyter_http_over_ws &&\
1213
jupyter serverextension enable --py jupyter_http_over_ws

0 commit comments

Comments
 (0)