From 6be630c84e0086b988dffd888804063da97c9c9a Mon Sep 17 00:00:00 2001 From: Jean-Paul Calderone Date: Sat, 6 Apr 2019 11:12:27 -0400 Subject: [PATCH] Let us have version infp --- .circleci/Dockerfile.debian | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.circleci/Dockerfile.debian b/.circleci/Dockerfile.debian index 0723c9520..5dfb191ba 100644 --- a/.circleci/Dockerfile.debian +++ b/.circleci/Dockerfile.debian @@ -33,6 +33,7 @@ ENV WHEELHOUSE_PATH /tmp/wheelhouse ENV VIRTUALENV_PATH /tmp/venv ENV BUILD_SRC_ROOT /tmp/project +# Install just the runtime dependencies of Tahoe-LAFS RUN apt-get --quiet update && \ apt-get --quiet --yes install \ python2.7 \ @@ -40,6 +41,7 @@ RUN apt-get --quiet update && \ libssl1.1 \ libyaml-0-2 \ virtualenv && \ + git \ rm -rf /var/lib/apt/lists/* COPY --from=builder ${VIRTUALENV_PATH} ${VIRTUALENV_PATH}