mirror of
https://github.com/outbackdingo/ack-image-builder.git
synced 2026-01-27 10:18:13 +00:00
10 lines
188 B
Makefile
10 lines
188 B
Makefile
all: docker-container
|
|
|
|
PREFIX?=registry.aliyuncs.com/acs
|
|
VERSION?=v1.0.0
|
|
|
|
docker-container:
|
|
docker build --pull -t $(PREFIX)/ack-image-builder:$(VERSION) .
|
|
|
|
.PHONY: all docker-container
|