Stuff
This commit is contained in:
parent
5d4029c8b6
commit
01d30491ac
3 changed files with 23 additions and 11 deletions
24
Makefile
24
Makefile
|
@ -1,15 +1,19 @@
|
|||
BUILD_TAG ?= latest
|
||||
|
||||
|
||||
build: build-latest build-version
|
||||
publish: publish-generic publish-packager
|
||||
|
||||
build-generic:
|
||||
podman build -t liliesh/franky:$(BUILD_TAG) .
|
||||
|
||||
build-packager:
|
||||
podman build -t liliesh/franky-packager:$(BUILD_TAG) packager/.
|
||||
|
||||
build-latest:
|
||||
podman build -t liliesh/franky:latest .
|
||||
|
||||
|
||||
build-version:
|
||||
podman build -t liliesh/franky:9.3 .
|
||||
|
||||
publish: publish-latest publish-version
|
||||
publish-latest:
|
||||
podman push localhost/liliesh/franky:latest registry.satecloud.com/liliesh/franky:latest
|
||||
publish-generic:
|
||||
podman push localhost/liliesh/franky:$(BUILD_TAG) registry.satecloud.com/liliesh/franky:$(BUILD_TAG)
|
||||
|
||||
publish-version:
|
||||
podman push localhost/liliesh/franky:9.3 registry.satecloud.com/liliesh/franky:9.3
|
||||
publish-packager:
|
||||
podman push localhost/liliesh/franky-packager:$(BUILD_TAG) registry.satecloud.com/liliesh/franky-packager:$(BUILD_TAG)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue