Merge pull request #2278 from Tethik/patch-2

Install git in dockerfile for git dependencies.
This commit is contained in:
Dan Ryan
2018-06-15 01:24:50 -04:00
committed by GitHub
+1 -1
View File
@@ -1,7 +1,7 @@
FROM ubuntu:18.04
# -- Install Pipenv:
RUN apt update && apt install python3-pip -y && pip3 install pipenv
RUN apt update && apt install python3-pip git -y && pip3 install pipenv
ENV LC_ALL C.UTF-8
ENV LANG C.UTF-8