From 1ef7073e89a637dd6b1095f7cd2e696ab35ae1a7 Mon Sep 17 00:00:00 2001 From: Timofey Kirillov Date: Tue, 25 Jan 2022 11:42:55 +0300 Subject: [PATCH] feat(images-dependencies): introduce basic image dependencies configuration structs (fix) --- pkg/config/image_from_dockerfile.go | 1 + pkg/config/stapel_image_base.go | 1 + 2 files changed, 2 insertions(+) diff --git a/pkg/config/image_from_dockerfile.go b/pkg/config/image_from_dockerfile.go index 68558216c3..c0ab20968e 100644 --- a/pkg/config/image_from_dockerfile.go +++ b/pkg/config/image_from_dockerfile.go @@ -16,6 +16,7 @@ type ImageFromDockerfile struct { AddHost []string Network string SSH string + Dependencies []*Dependency raw *rawImageFromDockerfile } diff --git a/pkg/config/stapel_image_base.go b/pkg/config/stapel_image_base.go index fb193557ba..be8aac998a 100644 --- a/pkg/config/stapel_image_base.go +++ b/pkg/config/stapel_image_base.go @@ -20,6 +20,7 @@ type StapelImageBase struct { Ansible *Ansible Mount []*Mount Import []*Import + Dependencies []*Dependency raw *rawStapelImage }