class DockerSigh::DockerfileMash

Public Instance Methods

from_directive(parent_container_name) click to toggle source
# File lib/docker_sigh.rb, line 196
def from_directive(parent_container_name)
  if host
    raise "host not supported yet"
  else
    "FROM #{parent_container_name}:#{parent_tag}"
  end
end