mirror of
https://codeberg.org/librewolf/source.git
synced 2025-01-18 18:32:30 -05:00
22 lines
300 B
Text
22 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)
|