diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 3a02e6b111ec4494e3f8edbde72268864d34df72..cf6b94ecde861b007c0ddffc934b9c7709194cbc 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -22,7 +22,7 @@ stages:
   - deploy
 
 pylint:
-  image: johnybear/osdu-airflow:python36-2
+  image: johnybear/osdu-airflow:airflow.1.10.14
   stage: linters
   allow_failure: true
   script:
@@ -32,7 +32,7 @@ pylint:
     - exit ${EXIT_CODE}
 
 isort:
-  image: johnybear/osdu-airflow:python36-2
+  image: johnybear/osdu-airflow:airflow.1.10.14
   allow_failure: true
   stage: linters
   script:
@@ -42,7 +42,7 @@ isort:
 
 test_dags:
   stage: test_dags
-  image: johnybear/osdu-airflow:python36-2
+  image: johnybear/osdu-airflow:airflow.1.10.14
   script:
     - chmod +x tests/test_dags.sh
     - tests/./test_dags.sh  || EXIT_CODE=$?
@@ -55,7 +55,7 @@ test_dags:
 
 unit_tests:
   stage: unit_tests
-  image: johnybear/osdu-airflow:python36-2
+  image: johnybear/osdu-airflow:airflow.1.10.14
   script:
     - chmod +x tests/unit_tests.sh
     - tests/./unit_tests.sh  || EXIT_CODE=$?