2021-03-26 15:11:26 +01:00
|
|
|
IMG_NAME = transmission
|
2022-03-07 13:55:05 +01:00
|
|
|
REGISTRY=registry.monotremata.xyz:443
|
|
|
|
IMG=$(REGISTRY)/$(IMG_NAME)
|
2021-03-26 15:11:26 +01:00
|
|
|
|
2022-03-07 13:55:05 +01:00
|
|
|
.PHONY: build build-nc push
|
2021-03-26 15:11:26 +01:00
|
|
|
|
|
|
|
build: Dockerfile
|
2022-03-07 13:55:05 +01:00
|
|
|
docker build -t $(IMG) .
|
|
|
|
|
|
|
|
push: build
|
|
|
|
docker image push $(IMG)
|
2021-03-26 15:11:26 +01:00
|
|
|
|
|
|
|
build-nc: Dockerfile
|
2022-03-07 13:55:05 +01:00
|
|
|
docker build --no-cache -t $(IMG) .
|