dockerfiles/archivebox/Makefile

11 lines
201 B
Makefile
Raw Normal View History

2021-02-23 16:34:34 +01:00
USERNAME = rilla
IMG_NAME = archivebox
.PHONY: build build-nc
build: Dockerfile
docker build -t $(USERNAME)/$(IMG_NAME) .
build-nc: Dockerfile
docker build --no-cache -t $(USERNAME)/$(IMG_NAME) .