dockerfiles/tasks/Makefile

11 lines
224 B
Makefile
Raw Normal View History

2020-04-08 13:05:07 +02:00
USERNAME = rilla
IMG_NAME = tasks
.PHONY: build build-nc
build: Dockerfile entrypoint.sh
docker build -t $(USERNAME)/$(IMG_NAME) .
build-nc: Dockerfile entrypoint.sh
docker build --no-cache -t $(USERNAME)/$(IMG_NAME) .