Added docker build to Makefile to allow build call via make

This commit is contained in:
NC Thompson
2019-01-19 16:06:00 +02:00
parent d77bd9c31b
commit 996b5486c2

View File

@@ -26,7 +26,7 @@
#OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
#OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
.PHONY: test install gofmt
.PHONY: test install gofmt docker
build:
go build ./cmd/invertergui/
@@ -45,3 +45,6 @@ test-race:
vet:
go vet ./...
docker:
docker build --tag invertergui .