0
Fork 0
mirror of https://codeberg.org/librewolf/source.git synced 2025-01-18 18:32:30 -05:00
LibreWolf/assets/Makefile.buildenv

22 lines
300 B
Text
Raw Normal View History

2021-11-19 18:41:54 +01:00
.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)