Skip to content

Commit e5c3199

Browse files
authored
Merge pull request #14 from letsbuilda/gh13
Add GIT_SHA to Dockerfile
2 parents d27d504 + ce3185a commit e5c3199

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
FROM --platform=linux/amd64 python:slim-bullseye
22

3-
# Define Git SHA build argument for Sentry
3+
# Set Git SHA environment variable
44
ARG git_sha="development"
5+
ENV GIT_SHA=$git_sha
56

67
COPY . .
78

docs/source/changelog.rst

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44
Changelog
55
=========
66

7+
- :release:`1.4.0 <20th February 2023>`
8+
- :feature:`13` Actually add ``GIT_SHA`` to ``Dockerfile``
9+
710
- :release:`1.3.0 <20th February 2023>`
811
- :feature:`8` Load version dynamically
912

src/api/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""Public API for our projects"""
22

3-
__version__ = "1.3.0"
3+
__version__ = "1.4.0"

0 commit comments

Comments
 (0)