]> git.openstreetmap.org Git - chef.git/blob - Dockerfile
Switch nidhogg, ridgeback and rimfaxe to squid 4
[chef.git] / Dockerfile
1 FROM ruby:2.6
2
3 WORKDIR /app
4
5 RUN apt-get update \
6         && apt-get install -y --no-install-recommends libssl-dev
7
8 ADD Gemfile* /app/
9 RUN gem install bundler --no-document \
10     && bundle config build.nokogiri --use-system-libraries \
11     && bundle install --jobs $(nproc) --retry 5
12
13 ADD . /app/
14
15 RUN bundle exec cookstyle -f fuubar