From 0bf0b37045ddecb17a0b003ee37b7f61645d9603 Mon Sep 17 00:00:00 2001 From: c9s Date: Tue, 15 Dec 2020 17:53:11 +0800 Subject: [PATCH] add makefile target to build docker image --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index 1f3304153..f947bb910 100644 --- a/Makefile +++ b/Makefile @@ -27,4 +27,7 @@ dist: bin-dir bbgo-linux bbgo-darwin mkdir -p $(DIST_DIR) tar -C $(BUILD_DIR) -cvzf $(DIST_DIR)/bbgo-$$(git describe --tags).tar.gz . +docker: + docker build --tag yoanlin/bbgo . + .PHONY: dist