diff --git a/Jenkinsfile b/Jenkinsfile
index 6b265de..a27fc02 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -15,7 +15,7 @@
         stage('Family scope report') {
             agent {
                 docker {
-                    image 'cloudfluff/databaker'
+                    image 'gsscogs/databaker'
                     reuseNode true
                 }
             }
@@ -28,7 +28,7 @@
         stage('Dataset size report') {
             agent {
                 docker {
-                    image 'cloudfluff/databaker'
+                    image 'gsscogs/databaker'
                     reuseNode true
                 }
             }
@@ -37,6 +37,22 @@
                 sh 'cp dataset-stats/dataset-stats.html out/'
             }
         }
+        stage('Combined report') {
+            agent {
+                docker {
+                    image 'gsscogs/databaker'
+                    reusenNode true
+                }
+            }
+            environment {
+                AIRTABLE_TOKEN = credentials('airtable-token-alex')
+                AIRTABLE_BASE = 'appb66460atpZjzMq'
+            }
+            steps {
+                sh 'jupytext --to notebook combined/data_report.py'
+                sh 'jupyter-nbconvert --output-dir=out --ExecutePreprocessor.timeout=None --execute combined/data_report.ipynb'
+            }
+        }
     }
     post {
         always {