File tree Expand file tree Collapse file tree 2 files changed +16
-0
lines changed
Expand file tree Collapse file tree 2 files changed +16
-0
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,14 @@ RUN apt-get update \
1212RUN pip install -U BeautifulSoup docopt PyYAML pillow \
1313 sphinx sphinx_rtd_theme breathe recommonmark
1414
15+ ARG DEBIAN_FRONTEND=noninteractive
16+ RUN apt-get update && apt-get install -y curl software-properties-common \
17+ && add-apt-repository ppa:webupd8team/java \
18+ && echo "oracle-java8-installer shared/accepted-oracle-license-v1-1 select true" | debconf-set-selections \
19+ && echo "deb [arch=amd64] http://storage.googleapis.com/bazel-apt stable jdk1.8" | tee /etc/apt/sources.list.d/bazel.list \
20+ && curl https://bazel.build/bazel-release.pub.gpg | apt-key add - \
21+ && apt-get update && apt-get install -y oracle-java8-installer bazel
22+
1523ARG WITH_AVX
1624ARG WITH_DOC
1725ARG WITH_SWIG_PY
Original file line number Diff line number Diff line change @@ -12,6 +12,14 @@ RUN apt-get update \
1212RUN pip install -U BeautifulSoup docopt PyYAML pillow \
1313 sphinx sphinx_rtd_theme breathe recommonmark
1414
15+ ARG DEBIAN_FRONTEND=noninteractive
16+ RUN apt-get update && apt-get install -y curl software-properties-common \
17+ && add-apt-repository ppa:webupd8team/java \
18+ && echo "oracle-java8-installer shared/accepted-oracle-license-v1-1 select true" | debconf-set-selections \
19+ && echo "deb [arch=amd64] http://storage.googleapis.com/bazel-apt stable jdk1.8" | tee /etc/apt/sources.list.d/bazel.list \
20+ && curl https://bazel.build/bazel-release.pub.gpg | apt-key add - \
21+ && apt-get update && apt-get install -y oracle-java8-installer bazel
22+
1523ARG WITH_AVX
1624ARG WITH_DOC
1725ARG WITH_SWIG_PY
You can’t perform that action at this time.
0 commit comments