diff --git a/bitbucket-pipelines.yml b/bitbucket-pipelines.yml
index dc45f1c63593a4678bcf49ad4c832d7c84ad419e..c57d8b74a3d2a5654d0b29b254d0d1474669ffa3 100644
--- a/bitbucket-pipelines.yml
+++ b/bitbucket-pipelines.yml
@@ -8,6 +8,8 @@ image: continuumio/anaconda:latest
 pipelines:
   default:
     - step:
+        caches:
+          - condacache
         script: # Modify the commands below to build your repository.
           - apt-get update -y && apt-get -y install libgl1-mesa-glx
           - conda update -y conda
@@ -43,3 +45,7 @@ pipelines:
           - cd ../build
           - pip install .
           - pytest phasecalculator/test/*test/*test.py
+
+definitions:
+  caches:
+    condacache: "${CI_PROJECT_DIR}/conda/pkgs"