diff options
| author | 2020-12-21 14:55:33 +0000 | |
|---|---|---|
| committer | 2020-12-21 14:55:33 +0000 | |
| commit | 36dc58008181944ff78b85f9ac64b7b3e089b10c (patch) | |
| tree | 58f4f1ac0d26fb180a6caad4533e2d0b1e31a85d /Dockerfile | |
| parent | Merge pull request #438 from python-discord/metricity-temp-fix (diff) | |
| parent | Change pydis-site to site in Sentry SDK initialization (diff) | |
Merge pull request #439 from python-discord/ks123/sentry
Diffstat (limited to 'Dockerfile')
| -rw-r--r-- | Dockerfile | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -3,10 +3,14 @@ FROM python:3.8-slim-buster # Allow service to handle stops gracefully STOPSIGNAL SIGQUIT +# Set 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_NOSPIN=1 + PIPENV_NOSPIN=1 \ + GIT_SHA=$git_sha # Install git RUN apt-get -y update \ |