Do not attach stdin when building with local snapshot artifacts to allow running on CI

Change-Id: I09cf3ce110926495e6f56bdfa4648839d30e12b2
diff --git a/Makefile b/Makefile
index 95ea6cd..305bc77 100644
--- a/Makefile
+++ b/Makefile
@@ -273,7 +273,7 @@
 .onos-publish-local:
 ifeq ($(USE_LOCAL_SNAPSHOT_ARTIFACTS),true)
 	@# TODO: build custom docker container with required dependencies instead of installing via publish-local script
-	docker run --rm --entrypoint bash -it -v $(shell pwd)/:/src \
+	docker run --rm --entrypoint bash -v $(shell pwd)/:/src \
 	-e ONOS_ROOT=/src/onos -e MAVEN_REPO=/src/.m2/repository -w /src \
 	bitnami/minideb:buster ./publish-local.sh
 endif