From ee93bcf1a6155a71c8978b78b8bf03282dbdf088 Mon Sep 17 00:00:00 2001 From: Min RK Date: Thu, 13 Jun 2019 13:46:29 +0200 Subject: [PATCH] add git-lfs needed for cloning repos with files stored in LFS --- Dockerfile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 99e7355b..ff4a477e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,8 +12,11 @@ RUN mkdir /tmp/wheelhouse \ FROM python:${PYTHON_VERSION}-slim # we do need git, though -RUN apt-get update \ - && apt-get -y install --no-install-recommends git \ +# git-lfs is in backports +ARG DEB_RELEASE=stretch +RUN echo "deb http://deb.debian.org/debian ${DEB_RELEASE}-backports main" > /etc/apt/sources.list.d/backports.list \ + && apt-get update \ + && apt-get -t ${DEB_RELEASE}-backports -y install --no-install-recommends git git-lfs \ && rm -rf /var/lib/apt/lists/* # install repo2docker