0
Fork 0
mirror of https://codeberg.org/librewolf/source.git synced 2025-01-18 10:22:30 -05:00
LibreWolf/assets/Makefile.buildenv
Bert van der Weerd 49c0107a1b
Initial commit
2021-11-19 18:41:54 +01:00

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)