Sha256: 3ddfdfc29652f8021a3fec630bb3e23a463ad27c3bf78b5c9ea763f853575f3e
Contents?: true
Size: 622 Bytes
Versions: 24
Compression:
Stored size: 622 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.3.3-alpine MAINTAINER The Reek core team ENV code_dir /code ENV app_dir /usr/src/app ENV user app RUN apk --update add git 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 VOLUME ${code_dir} WORKDIR ${code_dir} CMD [ "/usr/src/app/bin/code_climate_reek" ]
Version data entries
24 entries across 22 versions & 2 rubygems