We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d27d504 + ce3185a commit e5c3199Copy full SHA for e5c3199
Dockerfile
@@ -1,7 +1,8 @@
1
FROM --platform=linux/amd64 python:slim-bullseye
2
3
-# Define Git SHA build argument for Sentry
+# Set Git SHA environment variable
4
ARG git_sha="development"
5
+ENV GIT_SHA=$git_sha
6
7
COPY . .
8
docs/source/changelog.rst
@@ -4,6 +4,9 @@
Changelog
=========
+- :release:`1.4.0 <20th February 2023>`
+- :feature:`13` Actually add ``GIT_SHA`` to ``Dockerfile``
9
+
10
- :release:`1.3.0 <20th February 2023>`
11
- :feature:`8` Load version dynamically
12
src/api/__init__.py
@@ -1,3 +1,3 @@
"""Public API for our projects"""
-__version__ = "1.3.0"
+__version__ = "1.4.0"
0 commit comments