From a13b69e8e55ac29c625923449c80506c7a8bffcf Mon Sep 17 00:00:00 2001 From: Rootul Patel Date: Thu, 16 Nov 2023 14:44:30 -0500 Subject: [PATCH] build: make docker-build --- Makefile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Makefile b/Makefile index 50f3a33..51cedad 100644 --- a/Makefile +++ b/Makefile @@ -20,3 +20,8 @@ lint: build: @echo "--> Building the binary and saving in bin/supply-server" @go build -o bin/supply-server + +## docker-build: Build a docker image. Requires docker to be installed. +docker-build: + @echo "--> Building the docker image" + @docker build . --tag "celestiaorg/supply:latest"