solana/ci/docker-rust/Dockerfile

28 lines
983 B
Docker
Raw Normal View History

2018-09-27 13:42:49 -07:00
# Note: when the rust version is changed also modify
# ci/buildkite.yml to pick up the new image tag
FROM rust:1.31.0
2018-07-30 15:56:49 -07:00
2018-08-19 08:49:24 -07:00
RUN set -x && \
apt update && \
2018-07-30 15:56:49 -07:00
apt-get install apt-transport-https && \
echo deb https://apt.buildkite.com/buildkite-agent stable main > /etc/apt/sources.list.d/buildkite-agent.list && \
echo deb http://apt.llvm.org/stretch/ llvm-toolchain-stretch-7 main > /etc/apt/sources.list.d/llvm.list && \
2018-11-21 16:44:52 -08:00
apt-key adv --no-tty --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 32A37959C2FA5C3C99EFBC32A79206696452D198 && \
2018-08-19 09:01:36 -07:00
wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | apt-key add - && \
2018-07-30 15:56:49 -07:00
apt update && \
apt install -y \
buildkite-agent \
clang-7 \
cmake \
lcov \
libclang-common-7-dev \
2018-09-28 16:20:57 -07:00
llvm-7 \
2018-07-30 15:56:49 -07:00
rsync \
sudo \
&& \
rustup component add rustfmt && \
rustup component add clippy && \
rm -rf /var/lib/apt/lists/* && \
rustc --version && \
cargo --version