Class: DockerCommand::DockerBuild

Inherits:
AbstractCommand
  • Object
show all
Defined in:
lib/command/docker_build.rb

Overview

Template for ‘docker build’ command

Instance Method Summary collapse

Instance Method Details

#templateObject



9
10
11
12
13
14
15
# File 'lib/command/docker_build.rb', line 9

def template
  'docker build ' +
    # '--no-cache ' +
    '--quiet ' \
    '--tag bleach/' + '%<tag>s ' \
    '%<dockerfile_dir>s >/dev/null'
end