Makefile: build-image-hugo: add `--load` for docker-container driver

To solve warning when using [docker-container driver](https://docs.docker.com/build/builders/drivers/docker-container/)
```
WARNING: No output specified with docker-container driver. Build result will only remain in the build cache. To push result image into registry use --push or to load image into docker use --load
```

Signed-off-by: Tiger Kaovilai <tkaovila@redhat.com>
pull/8702/head
Tiger Kaovilai 2025-02-18 15:59:27 -06:00
parent e64806a651
commit d2ac09253b
No known key found for this signature in database
GPG Key ID: F05DADBB55627443
1 changed files with 1 additions and 1 deletions

View File

@ -402,7 +402,7 @@ else
endif
build-image-hugo:
cd site && docker build --pull -t $(HUGO_IMAGE) .
cd site && docker build --load --pull -t $(HUGO_IMAGE) .
clean:
# if we have a cached image then use it to run go clean --modcache