From 78ff9808ea53f198d5fd975bf9f471621b2b5ad7 Mon Sep 17 00:00:00 2001 From: Vladimir Kamarzin Date: Tue, 21 May 2019 12:17:46 +0500 Subject: [PATCH] Add git as dependency in Dockerfile Now we have git+https:// in requirements.txt, so need to have git. Closes: #599 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 5b77bcd8a..4fea97610 100644 --- a/Dockerfile +++ b/Dockerfile @@ -17,7 +17,7 @@ RUN set -xe ;\ apt-get update ;\ # Prepare dependencies apt-get install -y --no-install-recommends gcc make libssl-dev python3-pip python3-dev python3-setuptools \ - python3-async whiptail ;\ + python3-async whiptail git ;\ apt-get clean ;\ rm -rf /var/lib/apt/lists/*