mirror of
https://codeberg.org/librewolf/source.git
synced 2025-01-18 10:22:30 -05:00
21 lines
300 B
Text
21 lines
300 B
Text
.PHONY : all clean veryclean build no-cache upload push
|
|
|
|
tag=librewolf/bs4-buildenv-$(distro)
|
|
|
|
|
|
all : build
|
|
|
|
clean :
|
|
veryclean : clean
|
|
-$(docker) rmi $(tag)
|
|
|
|
build :
|
|
$(docker) build -t $(tag) .
|
|
|
|
no-cache :
|
|
$(docker) build --no-cache -t $(tag) .
|
|
|
|
upload : push
|
|
|
|
push : build
|
|
$(docker) push $(tag)
|