From ff232ac35c2cc49ccac537aea6319f61d8cd5cba Mon Sep 17 00:00:00 2001 From: 4TT1L4 <2914096+4TT1L4@users.noreply.github.com> Date: Mon, 29 Apr 2024 09:49:11 +0200 Subject: [PATCH] Add build make target #38 --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index 4e37f75..2c2001a 100644 --- a/Makefile +++ b/Makefile @@ -3,6 +3,9 @@ all : start stop DEFAULT_STRATEGY := strategy_a +build: + docker build -t ghcr.io/geniusyield/strategy-executor . + start: docker compose up -d --build $(DEFAULT_STRATEGY) docker compose logs -f strategy_a