]> git.openstreetmap.org Git - chef.git/blob - Dockerfile
tile: Drop negative tiles
[chef.git] / Dockerfile
1 FROM ruby:2.4
2
3 WORKDIR /app
4
5 RUN apt-get update \
6         && apt-get install -y --no-install-recommends libssl1.0-dev
7
8 ADD Gemfile* /app/
9 RUN gem install bundler && bundle config build.nokogiri --use-system-libraries && bundle install --jobs 4 --retry 5
10
11 ADD . /app/
12
13 RUN bundle exec rubocop -f fuubar
14 RUN bundle exec foodcritic -f any cookbooks