From 439c0089cbd68f4221f2d50e8d1bd7cbbe0b1faa Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Sun, 20 May 2018 10:02:54 -0400 Subject: [PATCH] also install git Signed-off-by: Kenneth Reitz --- Dockerfile.tests | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile.tests b/Dockerfile.tests index 1b235af4..01f6f207 100644 --- a/Dockerfile.tests +++ b/Dockerfile.tests @@ -1,7 +1,7 @@ FROM ubuntu:18.04 # -- Install Pipenv: -RUN apt update && apt install python-pip python3-pip time -y && pip3 install pipenv +RUN apt update && apt install python-pip python3-pip time git -y && pip3 install pipenv ENV LC_ALL C.UTF-8 ENV LANG C.UTF-8