From 49838d22420d2a355fb0c227cbb0e0afb23c6acb Mon Sep 17 00:00:00 2001 From: MarkKoz Date: Tue, 14 Jul 2020 12:22:23 -0700 Subject: Install git in Docker image It's needed to be able to download discord.py via git since the alpha version is not on PyPI. --- Dockerfile | 6 ++++++ 1 file changed, 6 insertions(+) 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 -- cgit v1.2.3