1 2 3 4 5 6 7 8all: build build: @docker build --tag=smartchecker/ubuntu:latest . release: build @docker build --tag=smartchecker/ubuntu:$(shell cat VERSION) .
1 2 3 4 5 6 7 8
all: build build: @docker build --tag=smartchecker/ubuntu:latest . release: build @docker build --tag=smartchecker/ubuntu:$(shell cat VERSION) .