From 3b88bf9dae3f8bdfb487a2085d3c3eda512a88e0 Mon Sep 17 00:00:00 2001 From: Jeff Tratner Date: Mon, 19 Mar 2018 10:00:47 -0700 Subject: [PATCH] Add git to Dockerfile for git installs --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index a0dc6982..f69886e4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ RUN apt update RUN apt install software-properties-common python-software-properties -y RUN add-apt-repository ppa:pypa/ppa -y RUN apt update -RUN apt install pipenv -y +RUN apt install git pipenv -y ENV LC_ALL C.UTF-8 ENV LANG C.UTF-8