File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff 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
1112RUN pip3 install jupyter matplotlib jupyter_http_over_ws &&\
1213 jupyter serverextension enable --py jupyter_http_over_ws
You can’t perform that action at this time.
0 commit comments