Browse Source

include git refs and HEAD file in docker images to allow GIT_SHA of builds to show in version output

Nick Sweeting 1 year ago
parent
commit
b0da386793
2 changed files with 4 additions and 2 deletions
  1. 3 1
      .dockerignore
  2. 1 1
      archivebox/config.py

+ 3 - 1
.dockerignore

@@ -5,10 +5,12 @@ __pycache__/
 .mypy_cache/
 .pytest_cache/
 .github/
-.git/
 .pdm-build/
 .pdm-python
 .eggs/
+.git/
+!.git/HEAD
+!.git/refs/heads/*
 
 venv/
 .venv/

+ 1 - 1
archivebox/config.py

@@ -399,7 +399,7 @@ def get_version(config):
 
 def get_commit_hash(config) -> Optional[str]:
     try:
-        git_dir = config['PACKAGE_DIR'] / '../'
+        git_dir = config['PACKAGE_DIR'] / '../.git'
         ref = (git_dir / 'HEAD').read_text().strip().split(' ')[-1]
         commit_hash = git_dir.joinpath(ref).read_text().strip()
         return commit_hash