From b6e4e483337c10e9d162f7ea81e29f125da5f8e7 Mon Sep 17 00:00:00 2001 From: Luke Anderson Date: Thu, 6 Jun 2019 19:10:20 +1000 Subject: [PATCH] Updated docker file to include the git-lfs installation. --- Dockerfile | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 57f677b78..e2b526963 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,12 @@ FROM rust:latest -RUN apt-get update && apt-get install -y clang libclang-dev cmake build-essential git unzip autoconf libtool awscli +RUN apt-get update && apt-get install -y clang libclang-dev cmake build-essential git unzip autoconf libtool awscli software-properties-common + +RUN add-apt-repository -y ppa:git-core/ppa + +RUN curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.deb.sh | bash + +RUN apt-get install -y git-lfs RUN git clone https://github.com/google/protobuf.git && \ cd protobuf && \