From 6e5158e469643f873c6f9bca3f9a7cfbb6d6334e Mon Sep 17 00:00:00 2001 From: Alec Reynolds Date: Thu, 12 Oct 2023 11:11:13 -0700 Subject: [PATCH] #53: Disable Docker Buildkit for Lagoon. --- app.js | 1 + 1 file changed, 1 insertion(+) diff --git a/app.js b/app.js index aba60a0..b7d9350 100644 --- a/app.js +++ b/app.js @@ -14,6 +14,7 @@ const LagoonApi = require('./lib/api'); // Only do this on lagoon recipes module.exports = (app, lando) => { if (_.get(app, 'config.recipe') === 'lagoon') { + process.env.DOCKER_BUILDKIT=0; // Indicate awareness app.log.verbose('identified a lagoon app');