X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/55d127485c0bbd0a249cd359af10e3e7cb2da295..418848d98ef1254285289a7a78724b89d790d76e:/Dockerfile diff --git a/Dockerfile b/Dockerfile index 1dca54301..01e194f4a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,14 +1,15 @@ -FROM ruby:2.4 +FROM ruby:2.6 WORKDIR /app RUN apt-get update \ - && apt-get install -y --no-install-recommends libssl1.0-dev + && apt-get install -y --no-install-recommends libssl-dev ADD Gemfile* /app/ -RUN gem install bundler && bundle config build.nokogiri --use-system-libraries && bundle install --jobs 4 --retry 5 +RUN gem install bundler --no-document \ + && bundle config build.nokogiri --use-system-libraries \ + && bundle install --jobs $(nproc) --retry 5 ADD . /app/ -RUN bundle exec rubocop -f fuubar -RUN bundle exec foodcritic -f any cookbooks +RUN bundle exec cookstyle -f fuubar