From 21a07a63c9fc4cdab84ad15e68d407c894759831 Mon Sep 17 00:00:00 2001 From: Jessica Frazelle Date: Thu, 9 Jul 2015 14:51:02 -0700 Subject: [PATCH] add deb and rpm targets to dockerfile Signed-off-by: Jessica Frazelle --- Makefile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Makefile b/Makefile index 0b6844d8cc..f76d127f51 100644 --- a/Makefile +++ b/Makefile @@ -46,6 +46,11 @@ binary: build cross: build $(DOCKER_RUN_DOCKER) hack/make.sh binary cross +deb: build + $(DOCKER_RUN_DOCKER) hack/make.sh binary build-deb + +rpm: build + $(DOCKER_RUN_DOCKER) hack/make.sh binary build-rpm test: build $(DOCKER_RUN_DOCKER) hack/make.sh binary cross test-unit test-integration-cli test-docker-py