aboutsummaryrefslogtreecommitdiffstats
path: root/Dockerfile
diff options
context:
space:
mode:
authorGravatar ks129 <[email protected]>2020-12-20 15:36:06 +0200
committerGravatar ks129 <[email protected]>2020-12-20 15:36:06 +0200
commitb6e13bce259d01a6a4d0a6b929dc02578e9372c6 (patch)
treeefa4fc33594b09cd72c1ff9614d669226f674b2e /Dockerfile
parentBump Sentry SDK version from 0.14 to 0.19 (diff)
Add Git SHA consuming and putting to environment in Dockerfile
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile6
1 files changed, 5 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile
index ccc8c1d4..3bb0a457 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -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 \