Read airflow connection parameters properly
Read configuration json file properly even if it doesn't define all parameters
Add emit command to workflow_ctl
Add some example commands for emit message & register essence
Make docker-compose configuration files to allow communication between containers
Rework kickstarter as api_client does not work properly

Change-Id: I59d00bfe17027a7ab367e6acde6a9eaaed3b6937
diff --git a/Makefile b/Makefile
index 38dbcde..6a7e698 100644
--- a/Makefile
+++ b/Makefile
@@ -37,14 +37,14 @@
 all: test
 
 docker-build:
-	docker build $(DOCKER_BUILD_ARGS) \
+	 docker build $(DOCKER_BUILD_ARGS) \
     -t ${DOCKER_IMAGENAME} \
     --build-arg org_label_schema_version="${VERSION}" \
     --build-arg org_label_schema_vcs_url="${DOCKER_LABEL_VCS_URL}" \
     --build-arg org_label_schema_vcs_ref="${DOCKER_LABEL_VCS_REF}" \
     --build-arg org_label_schema_build_date="${DOCKER_LABEL_BUILD_DATE}" \
     --build-arg org_opencord_vcs_commit_date="${DOCKER_LABEL_COMMIT_DATE}" \
-    -f Dockerfile .
+    -f ./docker/Dockerfile .
 
 docker-push:
 	docker push ${DOCKER_IMAGENAME}