diff options
| author | 2020-07-20 17:15:36 +0200 | |
|---|---|---|
| committer | 2020-07-20 17:15:36 +0200 | |
| commit | a8fccae048dec79a591f561b47c4ede9994e033c (patch) | |
| tree | f0504a266bb58ef0a3c309b782fdfc8459cf3656 /Dockerfile | |
| parent | Source: Split to multiple lines to fix too long line on error raising (diff) | |
| parent | Merge pull request #993 from python-discord/kwzrd/incidents (diff) | |
Merge branch 'master' into source-command
Diffstat (limited to 'Dockerfile')
| -rw-r--r-- | Dockerfile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Dockerfile b/Dockerfile index 06a538b2a..0b1674e7a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,6 +6,11 @@ ENV PIP_NO_CACHE_DIR=false \ PIPENV_IGNORE_VIRTUALENVS=1 \ PIPENV_NOSPIN=1 +RUN apt-get -y update \ + && apt-get install -y \ + git \ + && rm -rf /var/lib/apt/lists/* + # Install pipenv RUN pip install -U pipenv |