Record completed Docker verification of the version stamp

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
2026-08-11 18:12:01 +02:00
parent ae434a7167
commit 5a7f0a30c3

View File

@@ -49,14 +49,13 @@ go vet ./... && go test ./... # all green, incl. new resolve() table t
go build -o bin/manager ./cmd && ./bin/manager --version # e4d2a191d0c2-dirty
```
The image-level check could not run locally — the Docker daemon was not
running. `make docker-build IMG=egress-proxies-operator:dev` did prove the
Makefile side before failing at the daemon: it invoked
`docker build --build-arg GIT_COMMIT=e4d2a191d0c2-dirty ...`. Still pending
(needs a running daemon):
The image-level check initially failed (Docker daemon not running); after
the daemon was started it passed in full:
```bash
make docker-build IMG=egress-proxies-operator:dev
docker run --rm egress-proxies-operator:dev --version
# ae434a7167ec-dirty (matches git rev-parse --short=12 HEAD + untracked files)
docker inspect egress-proxies-operator:dev --format '{{index .Config.Labels "org.opencontainers.image.revision"}}'
# ae434a7167ec-dirty
```