From 9cfdbd591422729a74ba25b49bee4604bee9c482 Mon Sep 17 00:00:00 2001 From: Wonderfall Date: Fri, 1 Jul 2016 12:27:32 +0200 Subject: [PATCH] lutim: use framagit --- lutim/Dockerfile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/lutim/Dockerfile b/lutim/Dockerfile index f44bd2e..7ebdb18 100644 --- a/lutim/Dockerfile +++ b/lutim/Dockerfile @@ -13,6 +13,7 @@ ENV USERID=1000 \ RUN apt-get update && apt-get install -y --no-install-recommends --no-install-suggests \ wget \ + git \ perl \ make \ gcc \ @@ -21,13 +22,14 @@ RUN apt-get update && apt-get install -y --no-install-recommends --no-install-su shared-mime-info \ perlmagick \ && cpan install Carton \ - && mkdir /lutim && cd /lutim \ - && wget -qO- https://github.com/ldidry/lutim/archive/master.tar.gz | tar xz --strip 1 \ + && git clone https://framagit.org/luc/lutim.git --depth=1 \ + && cd /lutim \ && carton install \ && wget -q https://github.com/krallin/tini/releases/download/v$TINI_VER/tini_$TINI_VER.deb -P /tmp \ && dpkg -i /tmp/tini_$TINI_VER.deb \ && apt-get purge -y \ wget \ + git \ make \ gcc \ libssl-dev \