initial (disabled) Jenkinsfile
diff --git a/Jenkinsfile b/Jenkinsfile
new file mode 100644
index 0000000..175427b
--- /dev/null
+++ b/Jenkinsfile
@@ -0,0 +1,27 @@
+pipeline {
+    agent {
+            label 'git-websites'
+    }
+
+    stages {
+        stage('build') {
+            steps {
+                sh 'rm -rf build'
+// clone the felix-site-pub repo
+                sh 'git clone --depth 1 --branch asf-site https://gitbox.apache.org/repos/asf/felix-site-pub.git build/site'
+                dir('build/site') {
+                    sh 'git rm -r .'
+                }
+
+                sh 'npm run plain-install'
+                sh 'npm run build-noclean'
+
+                dir('build/site') {
+		          sh 'git add .'
+		          sh 'echo `git commit -m "site build"`'
+//                  sh 'git push https://gitbox.apache.org/repos/asf/felix-site-pub.git asf-site'
+		}
+            }
+        }
+    }
+}
\ No newline at end of file