6 lines
156 B
Makefile
6 lines
156 B
Makefile
.PHONY: all docker-image
|
|
|
|
all: docker-image
|
|
|
|
docker-image: go.mod $(shell find -type f -name '*.go')
|
|
docker build -t jandd/concourse-dsa-resource:latest .
|