From 583f1f33524839c5aecf578bf9fc6e63c355e980 Mon Sep 17 00:00:00 2001 From: KongQun Yang Date: Tue, 1 Mar 2016 15:11:04 -0800 Subject: [PATCH] Don't fetch git histories in docker Change-Id: I02e5db18d49d1978960ee3d66cb48d681e5e858e --- Dockerfile | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/Dockerfile b/Dockerfile index 0eb7706d18..8e4ae74971 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,14 +2,13 @@ FROM ubuntu:latest ENV DEBIAN_FRONTEND noninteractive -# update, upgrade and install basic packages -RUN apt-get update && apt-get upgrade -y && apt-get clean +# update, and install basic packages +RUN apt-get update RUN apt-get install -y \ build-essential \ wget \ git \ - python \ - subversion + python # install depot_tools http://www.chromium.org/developers/how-tos/install-depot-tools RUN git clone https://chromium.googlesource.com/chromium/tools/depot_tools.git @@ -19,9 +18,6 @@ ENV PATH /depot_tools:$PATH RUN mkdir edash_packager WORKDIR edash_packager RUN gclient config https://www.github.com/google/edash-packager.git --name=src -RUN gclient sync +RUN gclient sync --no-history RUN cd src && ninja -C out/Release ENV PATH /edash_packager/src/out/Release:$PATH - -# your media for testing -RUN mkdir /medias