diff options
author | 2020-12-19 19:16:11 +0200 | |
---|---|---|
committer | 2020-12-19 19:16:11 +0200 | |
commit | 45b40587d37655eeaac9723de44fee18f0080285 (patch) | |
tree | dbb9789d4b66945adc2bd071e186bd170f2f6514 /Dockerfile | |
parent | Create Sentry release workflow (diff) |
Add Git SHA build argument to Dockerfile
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -1,10 +1,14 @@ FROM python:3.8-slim +# Set SHA build argument +ARG git_sha + # 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 # Install git to be able to dowload git dependencies in the Pipfile RUN apt-get -y update \ |