11 lines
203 B
Makefile
11 lines
203 B
Makefile
|
USERNAME = rilla
|
||
|
IMG_NAME = transmission
|
||
|
|
||
|
.PHONY: build build-nc
|
||
|
|
||
|
build: Dockerfile
|
||
|
docker build -t $(USERNAME)/$(IMG_NAME) .
|
||
|
|
||
|
build-nc: Dockerfile
|
||
|
docker build --no-cache -t $(USERNAME)/$(IMG_NAME) .
|