Sha256: 4bab4dcc40ccd5b52c74f2443ff720460a48b9cd2a6d6cbcd035fd626c5d50eb
Contents?: true
Size: 671 Bytes
Versions: 11
Compression:
Stored size: 671 Bytes
Contents
# CodeClimate specification: https://github.com/codeclimate/spec/blob/master/SPEC.md # # Build and run via: # docker build -t codeclimate/codeclimate-reek . && docker run codeclimate/codeclimate-reek FROM ruby:2.6.0-alpine MAINTAINER The Reek core team ENV code_dir /code ENV app_dir /usr/src/app ENV user app RUN apk --update add git build-base ADD . ${app_dir} RUN adduser -u 9000 -D ${user} RUN chown -R ${user}:${user} ${app_dir} USER ${user} WORKDIR ${app_dir} RUN gem install rake RUN bundle install --without debugging development RUN gem install codeclimate-engine-rb VOLUME ${code_dir} WORKDIR ${code_dir} CMD [ "/usr/src/app/bin/code_climate_reek" ]
Version data entries
11 entries across 11 versions & 1 rubygems