dockerfiles/nfs-server/Makefile

11 lines
229 B
Makefile
Raw Normal View History

2021-04-10 18:37:36 +02:00
USERNAME = rilla
IMG_NAME = nfs-server
.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) .