Added makefile for container build and push
Signed-off-by: Sagi Dayan <sagidayan@gmail.com>
This commit is contained in:
parent
42fb7fe384
commit
8c4d4d1c5d
1 changed files with 13 additions and 0 deletions
13
Makefile
Normal file
13
Makefile
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
.PHONY: build
|
||||||
|
build:
|
||||||
|
podman build . -f Containerfile -t git.dayanhub.com/sagi/www.sagidayan.com-static:latest
|
||||||
|
|
||||||
|
.PHONY: push
|
||||||
|
push:
|
||||||
|
podman push git.dayanhub.com/sagi/www.sagidayan.com-static:latest
|
||||||
|
|
||||||
|
|
||||||
|
.PHONY: build-push
|
||||||
|
build-push: build push
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue