dockerfiles/rainloop/Makefile

11 lines
199 B
Makefile
Raw Normal View History

2021-05-05 20:32:53 +02:00
USERNAME = rilla
IMG_NAME = rainloop
.PHONY: build build-nc
build: Dockerfile
docker build -t $(USERNAME)/$(IMG_NAME) .
build-nc: Dockerfile
docker build --no-cache -t $(USERNAME)/$(IMG_NAME) .