diff options
| author | 2021-01-11 03:13:04 +0100 | |
|---|---|---|
| committer | 2021-01-11 03:13:04 +0100 | |
| commit | 24e432c75347eb23025eba6cf37030976ba846e8 (patch) | |
| tree | b8523c34af5d0af73ba451856d10e03b099e44b5 /Dockerfile | |
| parent | Remove old reference to CachedParser and unused const (diff) | |
| parent | Merge pull request #1350 from python-discord/mbaruh/developerectomy (diff) | |
Merge remote-tracking branch 'upstream/master' into doc-imp
Diffstat (limited to 'Dockerfile')
| -rw-r--r-- | Dockerfile | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile index 06a538b2a..5d0380b44 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,10 +1,19 @@ FROM python:3.8-slim +# Define Git SHA build argument +ARG git_sha="development" + # Set pip to have cleaner logs and no saved cache ENV PIP_NO_CACHE_DIR=false \ PIPENV_HIDE_EMOJIS=1 \ PIPENV_IGNORE_VIRTUALENVS=1 \ - PIPENV_NOSPIN=1 + PIPENV_NOSPIN=1 \ + GIT_SHA=$git_sha + +RUN apt-get -y update \ + && apt-get install -y \ + git \ + && rm -rf /var/lib/apt/lists/* # Install pipenv RUN pip install -U pipenv |