Sha256: 980261c2b4126961142895814f60b148cc661d845496f17de869f2ce7f15be44
Contents?: true
Size: 1.28 KB
Versions: 95
Compression:
Stored size: 1.28 KB
Contents
class KuberKit::ImageCompiler::ImageBuildDirCreator include KuberKit::Import[ "preprocessing.file_preprocessor", "shell.bash_commands", "shell.local_shell", "configs" ] Contract KuberKit::Shell::AbstractShell, KuberKit::Core::Image, String, KeywordArgs[ context_helper: Maybe[Any] ] => Any def create(shell, image, build_dir, context_helper: nil) bash_commands.rm_rf(shell, build_dir) bash_commands.mkdir_p(shell, build_dir) if image.build_context_dir # Sync build context and then preprocess shell.sync(image.build_context_dir, build_dir) shell.recursive_list_files(build_dir).each do |file_path| file_preprocessor.compile( shell, file_path, context_helper: context_helper ) end end # Sync dockerfile and then preprocess target_dockerfile = File.join(build_dir, configs.image_dockerfile_name) shell.sync(image.dockerfile_path, target_dockerfile) file_preprocessor.compile( shell, target_dockerfile, context_helper: context_helper ) docker_ignore_content = configs.docker_ignore_list.join("\r\n") shell.write(File.join(build_dir, '.dockerignore'), docker_ignore_content) end def cleanup(shell, build_dir) bash_commands.rm_rf(shell, build_dir) end end
Version data entries
95 entries across 95 versions & 1 rubygems