diff --git a/ci/Jenkinsfile b/ci/Jenkinsfile
index 0d2cde0ec0534a30dc67c48d796f434df9739981..7cef91e70eb6ff357903db2a0ec7ef3ef58ecc98 100644
--- a/ci/Jenkinsfile
+++ b/ci/Jenkinsfile
@@ -62,8 +62,12 @@ pipeline {
             env.CI_DOCKER_IMAGE = 'steamrt/sdk:scout'
           }
 
+          if (!env.CI_DOCKER_OPTIONS) {
+            env.CI_DOCKER_OPTIONS = ''
+          }
+
           docker.withRegistry("https://${env.CI_DOCKER_REGISTRY}", dockerRegistryCred) {
-            docker.image("${env.CI_DOCKER_REGISTRY}/${env.CI_DOCKER_IMAGE}").inside('--mount type=tmpfs,destination=/var/cache/apt/archives') {
+            docker.image("${env.CI_DOCKER_REGISTRY}/${env.CI_DOCKER_IMAGE}").inside("--mount type=tmpfs,destination=/var/cache/apt/archives ${env.CI_DOCKER_OPTIONS}") {
               sh '''
               set -eu
               cd src