From 2e8c2e213584c261747d33dde8e35d0b38880ca1 Mon Sep 17 00:00:00 2001 From: Peter Dave Hello Date: Sun, 18 Mar 2018 14:15:14 +0800 Subject: [PATCH] Reuse local repository in Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index f6e27e8b..bd2745d3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -22,12 +22,12 @@ MAINTAINER Marko Viitanen # List of needed packages to be able to build kvazaar with autotools ENV REQUIRED_PACKAGES automake autoconf libtool m4 build-essential git yasm pkgconf +ADD . kvazaar # Run all the commands in one RUN so we don't have any extra history # data in the image. RUN apt-get update \ && apt-get install -y $REQUIRED_PACKAGES \ && apt-get clean \ - && git clone --depth=1 git://github.com/ultravideo/kvazaar.git \ && cd kvazaar \ && ./autogen.sh \ && ./configure --disable-shared \