aboutsummaryrefslogtreecommitdiffstats
path: root/Dockerfile
diff options
context:
space:
mode:
authorGravatar Kieran Siek <[email protected]>2020-09-18 23:01:42 +0800
committerGravatar GitHub <[email protected]>2020-09-18 23:01:42 +0800
commit636cda284a5a2c2f51a17e87c8b71c0f6edcfb22 (patch)
tree3523b6eb11f5d752f9060dfba18dbd68a14ac1b0 /Dockerfile
parentFix typo in casercipher help. (diff)
parentMerge pull request #442 from python-discord/reddit-command-fix (diff)
Merge branch 'master' into caesar-command
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile6
1 files changed, 6 insertions, 0 deletions
diff --git a/Dockerfile b/Dockerfile
index b8a8a1e4..1e84a56d 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -6,6 +6,12 @@ ENV PIP_NO_CACHE_DIR=false \
PIPENV_IGNORE_VIRTUALENVS=1 \
PIPENV_NOSPIN=1
+# Install git to be able to dowload git dependencies in the Pipfile
+RUN apt-get -y update \
+ && apt-get install -y \
+ git \
+ && rm -rf /var/lib/apt/lists/*
+
# Install pipenv
RUN pip install -U pipenv