From 197cd6341dc18f06f581722b48a28f88e3426760 Mon Sep 17 00:00:00 2001 From: Luke Anderson Date: Tue, 12 Mar 2019 19:54:52 +1100 Subject: [PATCH] Installed rustfmt in Dockerfile. --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index 063ece3cdf..03e74a5127 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,7 @@ FROM rust:latest +RUN rustup component add rustfmt + RUN apt-get update && apt-get install -y clang libclang-dev cmake build-essential git unzip autoconf libtool RUN git clone https://github.com/google/protobuf.git && \