15 lines
No EOL
395 B
Makefile
15 lines
No EOL
395 B
Makefile
build: build-latest build-version
|
|
|
|
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-version:
|
|
podman push localhost/liliesh/franky:9.3 registry.satecloud.com/liliesh/franky:9.3
|