dockerfiles/agate/Makefile

11 lines
196 B
Makefile
Raw Normal View History

2021-02-17 18:06:08 +01:00
USERNAME = rilla
IMG_NAME = agate
.PHONY: build build-nc
build: Dockerfile
docker build -t $(USERNAME)/$(IMG_NAME) .
build-nc: Dockerfile
docker build --no-cache -t $(USERNAME)/$(IMG_NAME) .