From f79f268725b153a7a97162839cb11d736039f7e8 Mon Sep 17 00:00:00 2001 From: Mike Dalessio Date: Sat, 30 Jan 2021 15:43:39 -0500 Subject: [PATCH] dev: copy gemspec into docker image for `bundle install` step [skip ci] --- concourse/images/bundle-install.step | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/concourse/images/bundle-install.step b/concourse/images/bundle-install.step index 42b3a415c3..052e2eccec 100644 --- a/concourse/images/bundle-install.step +++ b/concourse/images/bundle-install.step @@ -1,7 +1,8 @@ # -*- dockerfile -*- -COPY Gemfile nokogiri/ +COPY Gemfile nokogiri/ COPY Gemfile.lock nokogiri/ +COPY nokogiri.gemspec nokogiri/ RUN gem install bundler -v "$(grep -A 1 "BUNDLED WITH" nokogiri/Gemfile.lock | tail -n 1)" RUN cd nokogiri && bundle install