diff options
| author | 2020-07-12 15:23:41 -0700 | |
|---|---|---|
| committer | 2020-07-12 15:23:41 -0700 | |
| commit | 76279b7e1bf0678d9ef3e2cb49f1d0d5a449d02b (patch) | |
| tree | e8c7250622c2fc7288d09dd61b670a96e56fae28 /Dockerfile | |
| parent | Scheduler: document coroutine closing elsewhere (diff) | |
| parent | Merge pull request #1035 from python-discord/range-len-message (diff) | |
Merge branch 'master' into feat/backend/800/scheduler-redesign
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 |