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

@@ -22,4 +22,4 @@ jobs:
run: make go-build-release run: make go-build-release
- name: Build Docker image - name: Build Docker image
run: make docker-build-release run: make docker-build

View File

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