Added Jenkinsfile

Signed-off-by: garciadeblas <gerardo.garciadeblas@telefonica.com>
diff --git a/Jenkinsfile b/Jenkinsfile
new file mode 100644
index 0000000..049f6e9
--- /dev/null
+++ b/Jenkinsfile
@@ -0,0 +1,19 @@
+pipeline {
+    agent none
+    stages {
+/*      stage('Test') {
+          agent { dockerfile true }
+            steps {
+                sh 'echo HOLA'
+            }
+        }
+*/
+        stage('Build') {
+            agent any
+            steps {
+                sh 'docker build .'
+                sh 'echo PUBLISH'
+            }
+        }
+    }
+}