class DockerCommand::DockerBuild

Template for 'docker build' command

Public Instance Methods

template() click to toggle source
# 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