fix(ci): add back missing docker build local image rule

Former-commit-id: 6d2afb4c72
This commit is contained in:
Varun Narravula
2025-12-23 15:33:04 -08:00
committed by Owen Schwartz
parent 88cc57bcef
commit 148f5fde23
2 changed files with 4 additions and 1 deletions

View File

@@ -5,6 +5,9 @@ all: local
local:
CGO_ENABLED=0 go build -o ./bin/olm
docker-build:
docker build -t fosrl/olm:latest .
docker-build-release:
@if [ -z "$(tag)" ]; then \
echo "Error: tag is required. Usage: make docker-build-release tag=<tag>"; \