dockerfiles/rainloop/Makefile

16 lines
259 B
Makefile
Raw Normal View History

2021-05-05 20:32:53 +02:00
IMG_NAME = rainloop
2022-03-07 13:55:05 +01:00
REGISTRY=registry.monotremata.xyz:443
2021-05-05 20:32:53 +02:00
2022-03-07 13:55:05 +01:00
IMG=$(REGISTRY)/$(IMG_NAME)
.PHONY: build build-nc push
2021-05-05 20:32:53 +02:00
build: Dockerfile
2022-03-07 13:55:05 +01:00
docker build -t $(IMG) .
push: build
docker image push $(IMG)
2021-05-05 20:32:53 +02:00
build-nc: Dockerfile
2022-03-07 13:55:05 +01:00
docker build --no-cache -t $(IMG) .