From 6e91a7dfeab455d18b17b1d12097f9272d761b2b Mon Sep 17 00:00:00 2001 From: Damien Duportal Date: Fri, 16 Sep 2022 10:36:16 +0200 Subject: [PATCH] Update sources.pkr.hcl --- sources.pkr.hcl | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/sources.pkr.hcl b/sources.pkr.hcl index 069cb2041..25329cf82 100644 --- a/sources.pkr.hcl +++ b/sources.pkr.hcl @@ -72,19 +72,4 @@ source "azure-arm" "base" { source "docker" "base" { # Persist image on local docker engine commit = true - - # To improve audit and garbage collecting, we provide "labels" to the image - changes = [ - "LABEL timestamp = ${local.now_unix_timestamp}", - "LABEL version = ${var.image_version}", - "LABEL scm_ref = ${var.scm_ref}", - "LABEL build_type = ${var.build_type}", - "ENV LANG=en_US.UTF-8", - "ENV LANGUAGE=en_US:en", - "ENV LC_ALL=en_US.UTF-8", - "ENV AGENT_WORKDIR=/home/jenkins/agent", - "WORKDIR /home/jenkins", - "ENTRYPOINT [\"/usr/local/bin/jenkins-agent\"]", - "USER jenkins", - ] }