Class: Command::BuildImage
Constant Summary collapse
- NAME =
"build-image"
- OPTIONS =
[ app_option(required: true), commit_option ].freeze
- ACCEPTS_EXTRA_OPTIONS =
true
- DESCRIPTION =
"Builds and pushes the image to Control Plane"
- LONG_DESCRIPTION =
<<~DESC - Builds and pushes the image to Control Plane - Automatically assigns image numbers, e.g., `app:1`, `app:2`, etc. - Uses `.controlplane/Dockerfile` or a different Dockerfile specified through `dockerfile` in the `.controlplane/controlplane.yml` file - If a commit is provided through `--commit` or `-c`, it will be set as the runtime env var `GIT_COMMIT` - Accepts extra options that are passed to `docker build` DESC
Constants inherited from Base
Command::Base::ALL_VALIDATIONS, Command::Base::DEFAULT_ARGS, Command::Base::EXAMPLES, Command::Base::HIDE, Command::Base::REQUIRES_ARGS, Command::Base::USAGE, Command::Base::VALIDATIONS, Command::Base::VALIDATIONS_WITHOUT_ADDITIONAL_OPTIONS, Command::Base::VALIDATIONS_WITH_ADDITIONAL_OPTIONS, Command::Base::WITH_INFO_HEADER
Instance Attribute Summary
Attributes inherited from Base
Instance Method Summary collapse
-
#call ⇒ Object
rubocop:disable Metrics/MethodLength.
Methods inherited from Base
add_app_identity_option, all_commands, all_options, all_options_by_key_name, app_option, #args_join, commit_option, common_options, #cp, cpu_option, detached_option, domain_option, #ensure_docker_running!, entrypoint_option, image_option, #initialize, interactive_option, location_option, log_method_option, logs_limit_option, logs_since_option, memory_option, org_option, #progress, replica_option, #run_command_in_latest_image, run_release_phase_option, skip_confirm_option, skip_post_creation_hook_option, skip_pre_deletion_hook_option, skip_secret_access_binding_option, skip_secrets_setup_option, #step, #step_error, #step_finish, terminal_size_option, trace_option, upstream_token_option, use_local_token_option, validations_option, verbose_option, version_option, wait_option, workload_option
Methods included from Helpers
normalize_command_name, normalize_option_name, random_four_digits, strip_str_and_validate
Constructor Details
This class inherits a constructor from Command::Base
Instance Method Details
#call ⇒ Object
rubocop:disable Metrics/MethodLength
20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 |
# File 'lib/command/build_image.rb', line 20 def call # rubocop:disable Metrics/MethodLength ensure_docker_running! dockerfile = config.current[:dockerfile] || "Dockerfile" dockerfile = "#{config.app_cpln_dir}/#{dockerfile}" raise "Can't find Dockerfile at '#{dockerfile}'." unless File.exist?(dockerfile) progress.puts("Building image from Dockerfile '#{dockerfile}'...\n\n") image_name = cp.latest_image_next image_url = "#{config.org}.registry.cpln.io/#{image_name}" commit = config.[:commit] build_args = [] build_args.push("GIT_COMMIT=#{commit}") if commit cp.image_build(image_url, dockerfile: dockerfile, docker_args: config.args, build_args: build_args) progress.puts("\nPushed image to '/org/#{config.org}/image/#{image_name}'.\n\n") step("Waiting for image to be available", retry_on_failure: true) do image_name == cp.latest_image(refresh: true) end end |