We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7220154 commit c6d8f4fCopy full SHA for c6d8f4f
lib/update-cache.js
@@ -5,6 +5,11 @@ var async = require('async');
5
var packageHash = require('./package-hash');
6
7
function updateCache(context, projectDir, done) {
8
+ // We don't support any caching in a docker container, as the container is reconstructed on every run anyway.
9
+ if (context.runnerId === 'docker') {
10
+ return done();
11
+ }
12
+
13
var cachier = context.cachier('modules');
14
15
packageHash(projectDir, function (err, hash) {
0 commit comments