diff --git a/Dockerfile b/Dockerfile index 4193880749b5f487b353a7233f8dc431e85d0a60..385dcb80ccde53aa28dd4619b11f35dded6a05b1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,6 +3,10 @@ MAINTAINER elois <c@elo.tf> LABEL version="1.47.0" LABEL description="CI for Rust projects" +# Add cmake +RUN apt-get update; \ + apt-get install -y cmake + # Install fmt and clippy RUN rustup component add rustfmt && rustup component add clippy