summaryrefslogtreecommitdiff
path: root/spec/support/docker_helper.rb
blob: 4df1e6e8994169e94d778541b576f793953154cf (plain)
1
2
3
4
5
6
7
8
9
10
11
RSpec.configure do |config|
  config.before(:suite) do
    Pathname.pwd.join('src').each_child do |file|
      next unless file.directory?

      Docker
        .new(pwd: file)
        .build(tag: "#{file.basename}:latest")
    end
  end
end