Lines Matching +full:apt +full:- +full:key
6 RUN bash -x /common_install.sh
7 RUN apt-get install -y --no-install-recommends curl
10 RUN curl https://bazel.build/bazel-release.pub.gpg | apt-key add -
12 RUN echo 'deb [arch=amd64] http://storage.googleapis.com/bazel-apt stable jdk1.8' >> /etc/apt/sourc…
14 COPY ubuntu-18.04_custom.list /etc/apt/sources.list.d/
16 RUN apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys F23C5A6CF475977595C89F51BA693…
18 RUN apt-get update -qq
20 RUN apt-get remove -y python3-pip
21 RUN python3 -m easy_install pip
23 RUN apt-get install -y --allow-unauthenticated --no-install-recommends \
24 g++-8 \
25 g++-7 \
26 g++-6 \
27 g++-5 \
28 clang-3.9 \
29 clang-4.0 \
30 clang-5.0 \
31 clang-6.0 \
32 clang-7 \
33 clang-8 \
34 clang-9 \
35 clang-10 \
39 clang-tidy \
40 clang-format
42 RUN python3.8 -m easy_install pip
44 RUN pip3 install absl-py
47 RUN pip3 install pytest-xdist
53 RUN bash -x /common_cleanup.sh