2020-03-22 20:44:17 +00:00
|
|
|
FROM ubuntu:19.10
|
2016-12-17 04:19:55 +00:00
|
|
|
|
2020-04-20 20:13:33 +00:00
|
|
|
RUN apt-get --allow-unauthenticated update -y && apt-get install --yes wget gnupg
|
|
|
|
RUN wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | apt-key add -
|
2020-04-20 20:04:35 +00:00
|
|
|
RUN echo "deb [trusted=yes] http://apt.llvm.org/eoan/ llvm-toolchain-eoan-10 main" >> /etc/apt/sources.list
|
|
|
|
|
2018-09-21 22:00:57 +00:00
|
|
|
RUN apt-get update -y \
|
|
|
|
&& env DEBIAN_FRONTEND=noninteractive \
|
|
|
|
apt-get install --yes --no-install-recommends \
|
|
|
|
bash \
|
|
|
|
ccache \
|
|
|
|
cmake \
|
|
|
|
curl \
|
|
|
|
expect \
|
2020-03-22 20:44:17 +00:00
|
|
|
g++ \
|
|
|
|
gcc \
|
2018-09-21 22:00:57 +00:00
|
|
|
ninja-build \
|
|
|
|
perl \
|
|
|
|
pkg-config \
|
|
|
|
python \
|
|
|
|
python-lxml \
|
|
|
|
python-requests \
|
|
|
|
python-termcolor \
|
|
|
|
sudo \
|
2019-04-18 10:20:31 +00:00
|
|
|
tzdata \
|
2020-04-30 12:10:32 +00:00
|
|
|
llvm-10 \
|
2020-04-20 20:04:35 +00:00
|
|
|
clang-10 \
|
|
|
|
clang-tidy-10 \
|
|
|
|
lld-10 \
|
|
|
|
lldb-10
|
2019-08-11 09:30:01 +00:00
|
|
|
|
2018-09-21 22:00:57 +00:00
|
|
|
COPY build.sh /
|
2016-12-17 04:19:55 +00:00
|
|
|
|
2018-09-21 22:00:57 +00:00
|
|
|
CMD ["/bin/bash", "/build.sh"]
|