dockerfiles/filite/Makefile

11 lines
197 B
Makefile
Raw Normal View History

2021-05-22 19:55:23 +02:00
USERNAME = rilla
IMG_NAME = filite
.PHONY: build build-nc
build: Dockerfile
docker build -t $(USERNAME)/$(IMG_NAME) .
build-nc: Dockerfile
docker build --no-cache -t $(USERNAME)/$(IMG_NAME) .