From 49c68e52becfe92d5d088177f38cdbe36cdbc48e Mon Sep 17 00:00:00 2001 From: Kian-Tat Lim Date: Thu, 3 Aug 2023 21:46:07 -0700 Subject: [PATCH] Load the built Docker image into the server. --- pipelines/lib/util.groovy | 1 + 1 file changed, 1 insertion(+) diff --git a/pipelines/lib/util.groovy b/pipelines/lib/util.groovy index 0fd0612d..18c378b9 100644 --- a/pipelines/lib/util.groovy +++ b/pipelines/lib/util.groovy @@ -94,6 +94,7 @@ def void buildImage(Map p) { opt << '--build-arg D_GROUP="$(id -gn)"' opt << '--build-arg D_GID="$(id -g)"' opt << '--build-arg D_HOME="$HOME"' + opt << '--load' opt << '.' writeFile(file: 'Dockerfile', text: config)