8 lines
99 B
Makefile
8 lines
99 B
Makefile
all: build
|
|
|
|
build:
|
|
@docker build --tag=dante .
|
|
|
|
no-cache:
|
|
@docker build --no-cache --tag=dante .
|