Makefile: add docker images targets
This commit is contained in:
parent
41daf61da4
commit
06d6d18305
8
Makefile
8
Makefile
|
@ -64,3 +64,11 @@ tools/bin/gocovmerge:
|
||||||
|
|
||||||
webbundle/bindata.go: tools/bin/go-bindata $(WEBDISTPATH)
|
webbundle/bindata.go: tools/bin/go-bindata $(WEBDISTPATH)
|
||||||
./tools/bin/go-bindata -o webbundle/bindata.go -tags webbundle -pkg webbundle -prefix "$(WEBDISTPATH)" -nocompress=true "$(WEBDISTPATH)/..."
|
./tools/bin/go-bindata -o webbundle/bindata.go -tags webbundle -pkg webbundle -prefix "$(WEBDISTPATH)" -nocompress=true "$(WEBDISTPATH)/..."
|
||||||
|
|
||||||
|
.PHONY: docker-agola
|
||||||
|
docker-agola:
|
||||||
|
docker build --target agola . -t agola
|
||||||
|
|
||||||
|
.PHONY: docker-agolademo
|
||||||
|
docker-agolademo:
|
||||||
|
docker build . -t agolademo
|
Loading…
Reference in New Issue